pengjun 3 days ago
parent
commit
f4d9bf8f51
  1. BIN
      public/files/公交集团预约人员名单导入模板.xlsx
  2. 2
      src/components/common/LocalConfig.vue
  3. 8
      src/views/doctorCheck/doctorCheck.vue

BIN
public/files/公交集团预约人员名单导入模板.xlsx

2
src/components/common/LocalConfig.vue

@ -305,7 +305,7 @@ export default {
isCheckPicture: false, //
isSelectAll: 'N', //
isAutoNext: 'N',
pacsType: 'image',
pacsType: 'image', // image \ dcm
isQueue: 'N', //
queueRoom: '', //

8
src/views/doctorCheck/doctorCheck.vue

@ -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)
}

Loading…
Cancel
Save