From fc55f5444bdb9e8626617328af5cc06cd8ccb1cc Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Mon, 2 Feb 2026 11:14:33 +0800 Subject: [PATCH] seo --- .../patientRegister/PatientRegisterEdit.vue | 3 +-- src/views/doctorCheck/doctorCheck.vue | 13 ++++++++-- src/views/doctorCheck/sumDoctorCheck.vue | 25 +++++++++++++++++-- 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/src/components/patientRegister/PatientRegisterEdit.vue b/src/components/patientRegister/PatientRegisterEdit.vue index 282fc9e..e012ef2 100644 --- a/src/components/patientRegister/PatientRegisterEdit.vue +++ b/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 } } }, diff --git a/src/views/doctorCheck/doctorCheck.vue b/src/views/doctorCheck/doctorCheck.vue index a976065..9db896d 100644 --- a/src/views/doctorCheck/doctorCheck.vue +++ b/src/views/doctorCheck/doctorCheck.vue @@ -152,7 +152,7 @@
+ :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;`"> @@ -165,7 +165,7 @@
+ :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;`">

AI诊断内容:

@@ -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: { diff --git a/src/views/doctorCheck/sumDoctorCheck.vue b/src/views/doctorCheck/sumDoctorCheck.vue index 89f3e16..7bec05d 100644 --- a/src/views/doctorCheck/sumDoctorCheck.vue +++ b/src/views/doctorCheck/sumDoctorCheck.vue @@ -459,7 +459,7 @@
+ :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;`">

AI诊断内容:

@@ -492,7 +492,7 @@
+ :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;`"> @@ -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