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