pengjun 2 months ago
parent
commit
fc55f5444b
  1. 3
      src/components/patientRegister/PatientRegisterEdit.vue
  2. 13
      src/views/doctorCheck/doctorCheck.vue
  3. 25
      src/views/doctorCheck/sumDoctorCheck.vue

3
src/components/patientRegister/PatientRegisterEdit.vue

@ -3921,8 +3921,7 @@ export default {
handler(newVal, oldVal) {
// console.log(' ', newVal, oldVal)
if (newVal != oldVal) {
this.preCustomerOrgId = this.refQueryCondition.customerOrgId
// console.log('this.preCustomerOrgId', this.preCustomerOrgId)
if(this?.refQueryCondition?.customerOrgId) this.preCustomerOrgId = this.refQueryCondition.customerOrgId
}
}
},

13
src/views/doctorCheck/doctorCheck.vue

@ -152,7 +152,7 @@
</div>
<div v-show="dialogWin.doctorPrList"
:style="`z-index:2;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:50px;right:120px;width:350px;height: ${window.pageHeight - 42 - 10}px;opacity:1;`">
:style="`z-index:2;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:${dialogMarginTop}px;right:120px;width:350px;height: ${window.pageHeight - 42 - 10}px;opacity:1;`">
<PatientRegisterList win="doctorCheck" :winAbsolute="true" @choosedBak="choosedBak" />
@ -165,7 +165,7 @@
<div>
<!-- AI诊断-->
<div v-show="AI.visible"
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:50px;right:120px;width:${AI.width}px;height: ${AI.height}px;opacity:1;`">
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:${dialogMarginTop}px;right:120px;width:${AI.width}px;height: ${AI.height}px;opacity:1;`">
<div v-show="AI.max" style="display: flex;justify-content: space-between;">
<p>AI诊断内容</p>
<el-tooltip content="隐藏 AI诊断内容" placement="top">
@ -347,6 +347,9 @@ export default {
isQueue: 'N', //
queueRoom: '', //
isAutoNext: 'N', //
},
normal: { //
displayTab:false//
}
},
LocalConfigInit: {},
@ -527,6 +530,12 @@ export default {
if (this.AI.isAssistant) ret = ret - 80
return ret
},
dialogMarginTop(){
let h = 50
if(this.LocalConfig.normal.displayTab) h=85
return h
}
},
methods: {

25
src/views/doctorCheck/sumDoctorCheck.vue

@ -459,7 +459,7 @@
<!-- AI诊断所有小结信息-->
<div v-show="AI.visible"
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:50px;left:0px;width:${AI.width}px;height: ${AI.height}px;opacity:1;`">
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:${dialogMarginTop}px;left:0px;width:${AI.width}px;height: ${AI.height}px;opacity:1;`">
<div v-show="AI.max" style="display: flex;justify-content: space-between;">
<p>AI诊断内容</p>
<el-tooltip content="隐藏 AI诊断内容" placement="top">
@ -492,7 +492,7 @@
</div>
<div v-show="dialogWin.sumPrList"
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:50px;right:120px;width:350px;height: ${window.pageHeight - 42 - 10}px;opacity:1;`">
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:${dialogMarginTop}px;right:120px;width:350px;height: ${window.pageHeight - 42 - 10}px;opacity:1;`">
<PatientRegisterList win="sumDoctorCheck" :winAbsolute="true" @choosedBak="choosedBak" />
@ -681,6 +681,12 @@ export default {
rawText: '',
html: ""
},
LocalConfig: {
normal: { //
displayTab:false//
}
},
};
},
@ -694,6 +700,15 @@ export default {
//
let userPriv = window.sessionStorage.getItem('userPriv')
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName))
let LocalConfig = window.localStorage.getItem("LocalConfig") || null
try {
this.LocalConfig = Object.assign({}, deepCopy(this.LocalConfig), JSON.parse(LocalConfig) || {})
} catch (error) {
console.log('window.localStorage.getItem("LocalConfig")', error)
}
this.AI.height = this.frameHeight
this.dragging.sugWidthLeft = Math.floor((this.window.pageWidth - 120) / 2)
@ -773,6 +788,12 @@ export default {
return ret
},
dialogMarginTop(){
let h = 50
if(this.LocalConfig.normal.displayTab) h=85
return h
},
sumHeight() {
let tempHeight = this.window.pageHeight < 600 ? 600 : this.window.pageHeight
return tempHeight - 335

Loading…
Cancel
Save