|
@@ -8,6 +8,7 @@ import {clearAllLabel} from '@store/actions/inspect';
|
|
|
import {CLEAR_ALL_DIAG} from '@store/types/diagnosticList';
|
|
|
import {CLEAR_ALL_PUSH_MESSAGE, SET_TIPS} from '@store/types/pushMessage';
|
|
|
import {ISREAD, SETREADDITEMS} from "../store/types/homePage";
|
|
|
+import {tabChange} from '@store/actions/tabTemplate';
|
|
|
import config from '@config/index.js';
|
|
|
|
|
|
/***
|
|
@@ -314,6 +315,8 @@ const pushAllDataList =(whichSign,action,reData,type) =>{ //回读清
|
|
|
type:SETREADDITEMS,
|
|
|
data:dataJson.addItems
|
|
|
});
|
|
|
+ //tab跳回辅助信息
|
|
|
+ store.dispatch(tabChange('0'));
|
|
|
}else{ //结构化历史病历回读
|
|
|
/*let dataJson = JSON.parse(reData.dataJson);*/
|
|
|
let dataJsonStr = reData.detailList;
|
|
@@ -421,6 +424,8 @@ const pushAllDataList =(whichSign,action,reData,type) =>{ //回读清
|
|
|
type:SETREADDITEMS,
|
|
|
data:dataJson.addItems
|
|
|
});
|
|
|
+ //tab跳回辅助信息
|
|
|
+ store.dispatch(tabChange('0'));
|
|
|
}else{ //纯文本历史病历回读
|
|
|
let dataJson = JSON.parse(reData.dataJson);
|
|
|
let dataJsonStr = reData.detailList;
|