|
|
|
@ -58,7 +58,7 @@ |
|
|
|
<el-tab-pane v-if="isCheckPicture" label="图片预览" name="imgPre"> |
|
|
|
<PacsImgPreview :doctorBtnDisabled="doctorBtnDisabled" :save="save" /> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane v-if="isCheckPicture" label="DCM" name="dcm"> |
|
|
|
<el-tab-pane v-if="isCheckPicture && pacsType == 'dcm' ? true:false" label="DCM" name="dcm"> |
|
|
|
<PacsDcmPreview /> |
|
|
|
</el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
@ -358,6 +358,7 @@ export default { |
|
|
|
activeName: 'asbitem', // asbitem:组合项目 call:排队叫号 |
|
|
|
activeMain: 'text', // text:文字结果 |
|
|
|
isCheckPicture: true, //是否显示结果图片 |
|
|
|
pacsType: 'image', // image:显示图片 \ dcm 时,显示 DCM 标签 |
|
|
|
|
|
|
|
refParamsQuery: { |
|
|
|
brushQueryDisp: 0, // 用于刷新查询条件处人员信息 |
|
|
|
@ -538,7 +539,8 @@ export default { |
|
|
|
try { |
|
|
|
this.LocalConfig = Object.assign({}, deepCopy(this.LocalConfigInit), JSON.parse(LocalConfig) || {}) |
|
|
|
if(!this.LocalConfig?.doctorCheck?.moreBtns) this.LocalConfig.doctorCheck.moreBtns = '放弃明细项目检查,放弃项目检查,删除明细项目,知情同意书' |
|
|
|
|
|
|
|
if(this.LocalConfig?.doctorCheck?.pacsType) this.pacsType = this.LocalConfig.doctorCheck.pacsType |
|
|
|
|
|
|
|
} catch (error) { |
|
|
|
console.log('window.localStorage.getItem("LocalConfig")', error) |
|
|
|
} |
|
|
|
@ -553,7 +555,7 @@ export default { |
|
|
|
} else { |
|
|
|
|
|
|
|
try { |
|
|
|
this.isCheckPicture = this.LocalConfig.doctorCheck.isCheckPicture |
|
|
|
this.isCheckPicture = this.LocalConfig?.doctorCheck?.isCheckPicture |
|
|
|
} catch (error) { |
|
|
|
console.log('window.localStorage.getItem("LocalConfig")', error) |
|
|
|
} |
|
|
|
|