import React, { Component } from 'react'; import style from './index.less'; import del_icon from './img/delete.png' import del_on from './img/delete-on.png' import diagUp from './img/diagUp.png' import diagDown from './img/diagDown.png' import manageIcon from '@common/images/manage.png'; import singleB from './img/singleB.png'; import singleL from './img/singleL.png'; import {ConfirmModal, Message,ComplexModal,Footer,Loading, Add} from '@commonComp'; import Notify from '@commonComp/Notify'; import Treat from '@containers/Treat' import store from '@store'; import { initItemList ,setInitHistory,getHistempDetail} from '@store/async-actions/historyTemplates'; import { getPageCoordinate,setPosition,pushAllDataList,inspectAndAssist ,deepClone,setFontColorSize} from '@utils/tools'; import { dragBox } from '@utils/drag'; import iconRadioDefault from '@common/images/icon-radio-default.png' import iconRadioActive from '@common/images/icon-radio-active.png' import AssessResult from '@containers/AssessResult'; import {getAssessData} from '@store/async-actions/fetchModules'; import DetailsModal from '@components/PushItems/DetailsModal'; import DiagResultSearch from '@containers/DiagResultSearch'; import tableIcon from '@common/images/table.png'; import { CONFIRM_TYPE } from "@store/types/typeConfig"; import config from '@config/index'; import $ from "jquery"; import {getMRAnalyse} from '@store/async-actions/pushMessage'; class DiagnosticList extends Component { constructor(props) { super(props); this.state = { visible: false, delItem: {}, treatTitle: '', activeHistory: -1, sign:-1, showAssess:false, assessId:'', disName:'', isAssessConfirm:false, hasOndel: false, hasOnIndex: -1, activeItem:{}, hasEnterItem: -1, hasEnterImg: false, timer:null, pageTop:'' } 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); this.handleSaveAssess = this.handleSaveAssess.bind(this); //评估弹窗确定 this.onPrint = this.onPrint.bind(this); this.hideTips=this.hideTips.bind(this); this.handleTcmShowSearch = this.handleTcmShowSearch.bind(this); this.handleSymShowSearch = this.handleSymShowSearch.bind(this); this.showTcmSearch=this.showTcmSearch.bind(this); this.showSymSearch=this.showSymSearch.bind(this); } onPrint() { let dom = $("#AssistResult"); dom.jqprint({ debug: false, importCSS: true, printContainer: true, operaSupport: false, }); } upDiagnostic(index) { const { upDiagnostic,isTcm } = this.props; upDiagnostic && upDiagnostic(index,isTcm) } downDiagnostic(index) { const { downDiagnostic,isTcm } = this.props; downDiagnostic && downDiagnostic(index,isTcm) } deleteItem() { const { delItem,idxNum } = this.state; const { delDiagnostic, delReact,delFollowUp,isTcm } = this.props; delDiagnostic && delDiagnostic(delItem,idxNum,isTcm); delReact && delReact(delItem); //删除对应不良反应 delFollowUp && delFollowUp(delItem); //删除对应回访记录 this.setState({ visible: false, }) Notify.success('删除成功') } handleBlur(e,delItem,idxNum){ const { delDiagnostic,isTcm } = this.props; let name = e.target.value if(name.trim() == ''){ delDiagnostic && delDiagnostic(delItem,idxNum,isTcm); } } handleTcmShowSearch(e) { this.props.showTcm ? this.hideTcmSearch() : this.showTcmSearch() this.setState({pageTop: getPageCoordinate(e).boxTop}) if (this.props.showTcm) { this.props.setHighter(48) } else { //this.props.getBilling({mode: 10}); setPosition(e, "#searchOption", this.props.setHighter) } } handleSymShowSearch(e) { this.showSymSearch(this.props.showSym ? false : true) this.setState({pageTop: getPageCoordinate(e).boxTop}) if (this.props.showSym) { this.props.setHighter(48) } else { //this.props.getBilling({mode: 10}); setPosition(e, "#searchOption", this.props.setHighter) } } showTcmSearch(flag) { const {showTcmSearch} = this.props; showTcmSearch && showTcmSearch(flag) } showSymSearch(flag) { const {showSymSearch} = this.props; showSymSearch && showSymSearch(flag) } cancel() { this.setState({ visible: false }) } close() { this.setState({ visible: false }) } handleDeleteItem(item,idx) { this.setState({ visible: true, delItem: item, idxNum:idx }) } showTreat(item, idx) { const { getTreatResult,getBilling,isTcm } = this.props; getTreatResult && getTreatResult(item,idx,isTcm); getBilling({mode:10}); } handleClickDiag(item) { const { getTips } = this.props; // getTips && getTips(item); getTips && getTips({id:item.conceptId, type:7, name: item.name, position: 0}); } hideTips() { const { hideTipsDetailsModal } = this.props; hideTipsDetailsModal && hideTipsDetailsModal() } referRecord() { const { hideReferRecord, showHistoryCaseModal ,chronicMagItem,hisTemplates,autoFillModules,typeConfig} = this.props; hideReferRecord && hideReferRecord(); // showHistoryCaseModal && showHistoryCaseModal() // store.dispatch(initItemList(chronicMagItem)) initItemList(chronicMagItem).then((res)=>{ const result = res.data; if(result.code==0 && result.data){ store.dispatch(setInitHistory(result.data)); showHistoryCaseModal && showHistoryCaseModal(); }else{ Notify.info("暂无历史病历,已默认展示慢病相关内容"); const timer = setTimeout(function(){ autoFillModules && autoFillModules(); clearTimeout(timer); },1000) //需求要求延时 } }) } noReferRecord() { const { hideReferRecord ,autoFillModules,refreshScroller} = this.props; hideReferRecord && hideReferRecord(); autoFillModules&&autoFillModules(); store.dispatch(getMRAnalyse()); setTimeout(function(){ refreshScroller()&&refreshScroller().scrollTop(); },100) } referCase() {//确定 const { hideHistoryCaseModal, items ,autoFillModules,typeConfig} = this.props; const {sign,activeItem} = this.state; hideHistoryCaseModal && hideHistoryCaseModal() if (this.state.activeHistory === -1) {//没有选择历史病例直接点确定 Notify.info("未选择历史病历,已默认展示慢病相关内容"); const timer = setTimeout(function(){ autoFillModules && autoFillModules(); clearTimeout(timer); },1000) return } // let baseList = store.getState(); // let baseObj = items[this.state.activeHistory]; // pushAllDataList(baseObj.sign,'push',baseObj,'history') //引用 store.dispatch(getHistempDetail(activeItem)); this.props.getBilling({mode:10}); this.setState({ activeHistory: -1, sign:-1, activeItem:{} }) } closeHistoryCaseModal() { const { hideHistoryCaseModal ,autoFillModules,typeConfig} = this.props this.setState({ activeHistory: -1, sign:-1, activeItem:{} }) hideHistoryCaseModal && hideHistoryCaseModal() autoFillModules&&autoFillModules(); } handleQuoteClick(item, index) { // const { handleQuoteClick } = this.props // handleQuoteClick && handleQuoteClick(item) this.setState({ activeHistory: index, sign:item.sign, activeItem:item }) } getHistoryCase() { const { items } = this.props return (