Browse Source

doctor

master
pengjun 1 year ago
parent
commit
95957e8cc8
  1. 15
      src/components/doctorCheck/CheckSumSug.vue
  2. 2
      src/components/doctorCheck/PatientRegisterBase.vue
  3. 3
      src/views/doctorCheck/doctorCheck.vue

15
src/components/doctorCheck/CheckSumSug.vue

@ -97,7 +97,7 @@
</table> </table>
</div> </div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="建议" name="suggestion">
<el-tab-pane label="建议" name="suggestion" v-if="doctor_check_disp_suggestion == 'Y'">
<div> <div>
<div <div
:style="`display: flex;position: absolute;top:5px;right:5px;z-index: 1;`"> :style="`display: flex;position: absolute;top:5px;right:5px;z-index: 1;`">
@ -172,7 +172,8 @@ export default {
routeUrlorPageName: 'doctorCheck', // routeUrlorPageName: 'doctorCheck', //
privs: [], // privs: [], //
}, },
activeName:'preResult'
activeName:'preResult',
doctor_check_disp_suggestion:'N', //
}; };
}, },
@ -180,12 +181,20 @@ export default {
// //
let userPriv = window.sessionStorage.getItem('userPriv') let userPriv = window.sessionStorage.getItem('userPriv')
if (userPriv) this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName)) 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() { mounted() {
this.rowDrop(); this.rowDrop();
this.rowDropSuggestion()
if(this.doctor_check_disp_suggestion == 'Y') this.rowDropSuggestion()
}, },
computed: { computed: {

2
src/components/doctorCheck/PatientRegisterBase.vue

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<div style="display: flex; flex-wrap: wrap;height:70px; width: 100%;">
<div style="display: flex; flex-wrap: wrap;height:70px; width: 100%;overflow-y: auto;">
<div> <div>
<span class="query">条码号</span> <span class="query">条码号</span>
<el-input placeholder="条码号" v-model="prBase.patientRegisterNo" size="small" style="width: 120px;" clearable /> <el-input placeholder="条码号" v-model="prBase.patientRegisterNo" size="small" style="width: 120px;" clearable />

3
src/views/doctorCheck/doctorCheck.vue

@ -26,8 +26,7 @@
<el-tab-pane label="组合项目" name="asbitem"> <el-tab-pane label="组合项目" name="asbitem">
<RegisterCheckList /> <RegisterCheckList />
</el-tab-pane> </el-tab-pane>
<el-tab-pane :label="LocalConfig.doctorCheck.isQueue == 'Y' ? '叫号' : ''" name="call"
:disabled="LocalConfig.doctorCheck.isQueue != 'Y'">
<el-tab-pane v-if="LocalConfig.doctorCheck.isQueue == 'Y'" label="叫号" name="call">
<QueueCheckList /> <QueueCheckList />
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>

Loading…
Cancel
Save