import React,{ Component } from 'react'; import style from './index.less'; import GeneralTreat from './GeneralTreat/index.jsx'; import DrugTreat from './DrugTreat/index.jsx'; import TreatDesc from '@components/TreatDesc' import DrugInfo from '@components/TreatDesc/DrugInfo'; import Notify from '@commonComp/Notify' import close from './img/close.png'; import generalIcon from './img/general.png'; import surgicalIcon from './img/surgical.png'; import $ from "jquery"; class Treat extends Component { constructor(props){ super(props); this.hideTreat = this.hideTreat.bind(this); this.handlePrescription = this.handlePrescription.bind(this); this.handleDetermine = this.handleDetermine.bind(this); } hideTreat() { const { hideTreat,clearTreat } = this.props; clearTreat && clearTreat(); hideTreat && hideTreat(); } handlePrescription() { Notify.info('该功能即将上线,敬请期待。', 2000) } handleDetermine() { const { title, treatment } = this.props const { addScheme } = this.props addScheme && addScheme(title, treatment); this.hideTreat() } showDrugInfo() { const { showDrugInfo } = this.props; showDrugInfo && showDrugInfo(); } render(){ const { generalTreat, treatment, treatItem, surgeryTreat, selectDrug, drugInfo, treatDesc, setOtherRecommend, setDrugInfo, showDrug, showDrugInfo,hideDrugInfo, title} = this.props; return(
治疗方案 ({treatItem.name})
开处方 确定
{treatDesc && }
{showDrug && drugInfo && }
) } } export default Treat;