|
@@ -180,8 +180,9 @@ export function setOtherHisModule(){
|
|
return (dispatch, getStore) => {
|
|
return (dispatch, getStore) => {
|
|
const state = getStore();
|
|
const state = getStore();
|
|
const initData = state.homePage.initData;
|
|
const initData = state.homePage.initData;
|
|
|
|
+ const block = Object.assign(JSON.parse(config.textLabel),{full:true});
|
|
const mode = state.typeConfig.typeConfig;
|
|
const mode = state.typeConfig.typeConfig;
|
|
- const model = JSON.parse(JSON.stringify(initData.otherHisModel || null)); //查体模板
|
|
|
|
|
|
+ const model = JSON.parse(JSON.stringify(initData.otherHisModel || null))||[block]; //查体模板
|
|
const arr = JSON.parse(JSON.stringify(initData.otherHis || null)); //最近其他史数据
|
|
const arr = JSON.parse(JSON.stringify(initData.otherHis || null)); //最近其他史数据
|
|
const arrSave = JSON.parse(JSON.stringify(initData.otherHisSave || null)); //最近其他史saveText
|
|
const arrSave = JSON.parse(JSON.stringify(initData.otherHisSave || null)); //最近其他史saveText
|
|
const selects = JSON.parse(JSON.stringify(initData.otherSelecteds || null)); //其他史杂音类选中项
|
|
const selects = JSON.parse(JSON.stringify(initData.otherSelecteds || null)); //其他史杂音类选中项
|