|
|
|
@ -85,7 +85,8 @@ |
|
|
|
</el-select> |
|
|
|
--> |
|
|
|
</div> |
|
|
|
<div style="display: flex;margin-top: 2px;"> |
|
|
|
<!--医学解释--> |
|
|
|
<div v-if="dispTermReason == 'Y'" style="display: flex;margin-top: 2px;"> |
|
|
|
<div style="width:60px;">医学解释</div> |
|
|
|
<el-tooltip content="新增医学解释" placement="top"> |
|
|
|
<el-button v-show="checkPagePriv(pagePriv.privs, '新增医学解释')" type="success" icon="el-icon-plus" |
|
|
|
@ -119,7 +120,8 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<div style="display: flex;margin-top: 2px;"> |
|
|
|
<!--常见原因--> |
|
|
|
<div v-if="dispTermReason == 'Y'" style="display: flex;margin-top: 2px;"> |
|
|
|
<div style="width:60px;">常见原因</div> |
|
|
|
<el-tooltip content="新增常见原因" placement="top"> |
|
|
|
<el-button v-show="checkPagePriv(pagePriv.privs, '新增常见原因')" type="danger" icon="el-icon-plus" |
|
|
|
@ -153,6 +155,7 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<!--健康指导--> |
|
|
|
<div style="display: flex;margin-top: 2px;"> |
|
|
|
<div style="width:60px;">健康指导</div> |
|
|
|
<el-tooltip content="新增健康指导" placement="top"> |
|
|
|
@ -255,6 +258,8 @@ export default { |
|
|
|
choosedDiagnosisIds: [], // 已选的诊断集合 |
|
|
|
collapse: false, // 折叠/展开全部建议 |
|
|
|
|
|
|
|
dispTermReason:'N', // 显示医学解释与常见原因 |
|
|
|
|
|
|
|
dialogWinSymbols: false, |
|
|
|
selection: { // 光标位置 |
|
|
|
start: 0, end: 0 |
|
|
|
@ -275,6 +280,8 @@ export default { |
|
|
|
let userPriv = window.sessionStorage.getItem('userPriv') |
|
|
|
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName)) |
|
|
|
|
|
|
|
// 获取是否显示医学解释与常见原因 |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
//挂载完成 |
|
|
|
|