import React, { Component } from 'react'; import style from './index.less'; import del_icon from './img/delete.png' import diagUp from './img/diagUp.png' import diagDown from './img/diagDown.png' import {ConfirmModal, Message} from '@commonComp'; import Notify from '@commonComp/Notify'; import Treat from '@containers/Treat' import store from '@store'; import { initItemList } from '@store/async-actions/historyTemplates'; import { pushAllDataList } from '@utils/tools'; import iconRadioDefault from '@common/images/icon-radio-default.png' import iconRadioActive from '@common/images/icon-radio-active.png' import tableIcon from '@common/images/table.png'; import { delFollowUp } from '../../store/actions/treat'; class DiagnosticList extends Component { constructor(props) { super(props); this.state = { visible: false, delItem: {}, treatTitle: '', activeHistory: -1 } this.deleteItem = this.deleteItem.bind(this); this.cancel = this.cancel.bind(this); this.close = this.close.bind(this); this.showTreat = this.showTreat.bind(this); this.handleClickDiag = this.handleClickDiag.bind(this); this.referRecord = this.referRecord.bind(this); this.noReferRecord = this.noReferRecord.bind(this); this.getHistoryCase = this.getHistoryCase.bind(this); this.closeHistoryCaseModal = this.closeHistoryCaseModal.bind(this); this.referCase = this.referCase.bind(this); } componentWillReceiveProps(nextprops) { if (this.props.diagnosticStr != nextprops.diagnosticStr) { this.props.getBilling(); } } upDiagnostic(index) { const { upDiagnostic } = this.props; upDiagnostic && upDiagnostic(index) } downDiagnostic(index) { const { downDiagnostic } = this.props; downDiagnostic && downDiagnostic(index) } deleteItem() { const { delItem } = this.state; const { delDiagnostic, delReact,delFollowUp } = this.props; delDiagnostic && delDiagnostic(delItem); delReact && delReact(delItem) delFollowUp && delFollowUp(delItem) this.setState({ visible: false, }) Notify.success('删除成功') } cancel() { this.setState({ visible: false }) } close() { this.setState({ visible: false }) } handleDeleteItem(item) { this.setState({ visible: true, delItem: item, }) } showTreat(item, index) { // item.treatIndex = index const { showTreat, getTreatResult } = this.props; getTreatResult && getTreatResult(item); showTreat && showTreat(); this.setState({ treatTitle: item.name }) } handleClickDiag(item) { const { getTips } = this.props; // getTips && getTips(item); getTips && getTips({id:item.id,type:7}); } referRecord() { const { hideReferRecord, showHistoryCaseModal ,chronicMagItem} = this.props hideReferRecord && hideReferRecord() showHistoryCaseModal && showHistoryCaseModal() store.dispatch(initItemList(chronicMagItem)); } noReferRecord() { const { hideReferRecord } = this.props hideReferRecord && hideReferRecord() } referCase() { const { hideHistoryCaseModal, items } = this.props hideHistoryCaseModal && hideHistoryCaseModal() if (this.state.activeHistory === -1) { return } let baseList = store.getState(); let baseObj = items[this.state.activeHistory]; // store.dispatch({type: CONFIRM_TYPE, confirmType: baseObj.sign}); pushAllDataList(baseObj.sign,'push',baseObj,'history') //引用 this.props.getBilling(); this.setState({ activeHistory: -1 }) } closeHistoryCaseModal() { const { hideHistoryCaseModal } = this.props this.setState({ activeHistory: -1 }) hideHistoryCaseModal && hideHistoryCaseModal() } handleQuoteClick(item, index) { console.log('asadsd', item) const { handleQuoteClick } = this.props // handleQuoteClick && handleQuoteClick(item) this.setState({ activeHistory: index }) } getHistoryCase() { const { items } = this.props return (
{items.map((item, index) => { return
{item.diagnose}
})}
) } render(){ const { list, treatment, showReferRecord, showHistoryCase } = this.props const { visible, treatTitle } = this.state const lastIndex = list.length -1; return(
{list && (list.length > 0) && list.map((item, index) => { const hasTreat = item.treat && (item.treat.commonTreatment.content || item.treat.surgeryTreatment.content || item.treat.treatment.length>0) // const hasTreat= true; return (
{index === 0 ? '' : {this.upDiagnostic(index)}}>} {list.length === 1 ? '' : index !== 0 ? '' : {this.downDiagnostic(index)}} className={style['diag-down']}>} {index === 0 ? '主' : index+1} {this.handleClickDiag(item)}}>{item.name} {item.type === 1 ? 初诊 : 复诊} {hasTreat && this.showTreat(item, index)}}> 治疗方案 {this.handleDeleteItem(item)}}/>
) })} {treatment&&}
是否删除该诊断?
是否引用往期病历
{this.getHistoryCase()}
确定
) } } export default DiagnosticList;