|
@@ -6,7 +6,7 @@ import diagUp from './img/diagUp.png'
|
|
import diagDown from './img/diagDown.png'
|
|
import diagDown from './img/diagDown.png'
|
|
import printIcon from '@common/images/team.png';
|
|
import printIcon from '@common/images/team.png';
|
|
import manageIcon from '@common/images/manage.png';
|
|
import manageIcon from '@common/images/manage.png';
|
|
-import {ConfirmModal, Message,ComplexModal} from '@commonComp';
|
|
|
|
|
|
+import {ConfirmModal, Message,ComplexModal,Loading} from '@commonComp';
|
|
import Notify from '@commonComp/Notify';
|
|
import Notify from '@commonComp/Notify';
|
|
import Treat from '@containers/Treat'
|
|
import Treat from '@containers/Treat'
|
|
import store from '@store';
|
|
import store from '@store';
|
|
@@ -187,7 +187,7 @@ class DiagnosticList extends Component {
|
|
return (<div className={style['history-info']}>
|
|
return (<div className={style['history-info']}>
|
|
{items.map((item, index) => {
|
|
{items.map((item, index) => {
|
|
return<div onClick={this.handleQuoteClick.bind(this, item, index)} style={this.state.activeHistory === index ? {color: '#3B9ED0'} : ''}>
|
|
return<div onClick={this.handleQuoteClick.bind(this, item, index)} style={this.state.activeHistory === index ? {color: '#3B9ED0'} : ''}>
|
|
- <img src={this.state.activeHistory === index ? iconRadioActive : iconRadioDefault}/>{item.diagnose + '(' + item.inquiryDate + ')'}
|
|
|
|
|
|
+ <img src={this.state.activeHistory === index ? iconRadioActive : iconRadioDefault}/>{item.diagnose} {item.inquiryDate}{item.sign==0?'(智能模式)':'(文本模式)'}
|
|
</div>
|
|
</div>
|
|
})}
|
|
})}
|
|
</div>)
|
|
</div>)
|
|
@@ -246,7 +246,7 @@ class DiagnosticList extends Component {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
render(){
|
|
render(){
|
|
- const { list, treatment, showReferRecord, showHistoryCase ,chronicMagItem} = this.props;
|
|
|
|
|
|
+ const { list, treatment, showReferRecord, showHistoryCase ,chronicMagItem,loading} = this.props;
|
|
const { visible, treatTitle ,showAssess, isAssessConfirm, radioVal, possible,assessId,disName, hasOndel} = this.state;
|
|
const { visible, treatTitle ,showAssess, isAssessConfirm, radioVal, possible,assessId,disName, hasOndel} = this.state;
|
|
const chronicList = JSON.parse(localStorage.getItem('chronic')||null);
|
|
const chronicList = JSON.parse(localStorage.getItem('chronic')||null);
|
|
const chronicLine = chronicMagItem&&chronicMagItem.name; //当前是否走的慢病流程
|
|
const chronicLine = chronicMagItem&&chronicMagItem.name; //当前是否走的慢病流程
|
|
@@ -311,6 +311,7 @@ class DiagnosticList extends Component {
|
|
{this.getHistoryCase()}
|
|
{this.getHistoryCase()}
|
|
<div className={style['confirm-history']}><span className={style['confirm-history-btn']} onClick={this.referCase}>确定</span></div>
|
|
<div className={style['confirm-history']}><span className={style['confirm-history-btn']} onClick={this.referCase}>确定</span></div>
|
|
</ConfirmModal>
|
|
</ConfirmModal>
|
|
|
|
+ <Loading show={loading}/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
)
|
|
)
|