|
|
|
@ -97,7 +97,7 @@ |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane label="建议" name="suggestion"> |
|
|
|
<el-tab-pane label="建议" name="suggestion" v-if="doctor_check_disp_suggestion == 'Y'"> |
|
|
|
<div> |
|
|
|
<div |
|
|
|
:style="`display: flex;position: absolute;top:5px;right:5px;z-index: 1;`"> |
|
|
|
@ -172,7 +172,8 @@ export default { |
|
|
|
routeUrlorPageName: 'doctorCheck', //当前页面归属路由或归属页面权限名称 |
|
|
|
privs: [], // 页面权限 |
|
|
|
}, |
|
|
|
activeName:'preResult' |
|
|
|
activeName:'preResult', |
|
|
|
doctor_check_disp_suggestion:'N', // 医生诊台 默认不显示建议 |
|
|
|
}; |
|
|
|
}, |
|
|
|
|
|
|
|
@ -180,12 +181,20 @@ export default { |
|
|
|
//获取用户当前页面的权限 |
|
|
|
let userPriv = window.sessionStorage.getItem('userPriv') |
|
|
|
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName)) |
|
|
|
|
|
|
|
|
|
|
|
postapi('/api/app/SysParmValue/GetSysParmValueBySysParmId', { sysParmId:'doctor_check_disp_suggestion' }) |
|
|
|
.then(res => { |
|
|
|
if(res.code > -1){ |
|
|
|
this.doctor_check_disp_suggestion = (res.data.toUpperCase())||"N" |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
//挂载完成 |
|
|
|
mounted() { |
|
|
|
this.rowDrop(); |
|
|
|
this.rowDropSuggestion() |
|
|
|
if(this.doctor_check_disp_suggestion == 'Y') this.rowDropSuggestion() |
|
|
|
}, |
|
|
|
|
|
|
|
computed: { |
|
|
|
|