|
@@ -7,7 +7,7 @@ import AnalysisResult from '@components/AnalysisResult';
|
|
|
import historyCase from '@common/images/history.png';
|
|
|
import sysResult from '@common/images/result.png';
|
|
|
import store from '@store';
|
|
|
-import { getEMRParams } from '@utils/tools';
|
|
|
+import { getEMRParams,getUrlArgObject } from '@utils/tools';
|
|
|
import { showHistory } from '@store/actions/historyTemplates';
|
|
|
import { initItemList, setInitHistory, getHospitalInfo } from '@store/async-actions/historyTemplates';
|
|
|
import HistoryCases from '@containers/HistoryCases';
|
|
@@ -70,13 +70,14 @@ class InfoTitle extends Component {
|
|
|
render() {
|
|
|
const {loading,loadingText,loadingType} = this.props;
|
|
|
const {resShow,analysisRes}=this.state;
|
|
|
+ const showSysBtn = getUrlArgObject("sysBtn")==='1';
|
|
|
return <div className={style['title-wrapper']} style={{paddingRight:'198px'}}>
|
|
|
<PatInfoContainer />
|
|
|
{
|
|
|
<div className={style['activeWrap']}>
|
|
|
<div className={style["operations"]}>
|
|
|
<span onClick={this.showHistoryBox}><img src={historyCase} /> 历史病历</span>
|
|
|
- <span onClick={()=>this.showSysBox(true)}><img src={sysResult} /> 解析结果</span>
|
|
|
+ {showSysBtn?<span onClick={()=>this.showSysBox(true)}><img src={sysResult} /> 解析结果</span>:""}
|
|
|
</div>
|
|
|
</div>
|
|
|
}
|