Browse Source

peter

360view
newPeter7 2 years ago
parent
commit
d8b58ef774
  1. 8
      src/page-subspecialty/store/modules/sign.js
  2. 2
      src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/addPatientOrder.vue

8
src/page-subspecialty/store/modules/sign.js

@ -26,7 +26,7 @@ export default {
operator: '',
informedDocSign: '',
informPatientSign: '',
checkSign: ''
checkSign: '',
fundusDocSign: '',
kinSign: '',
performerSign: '',
@ -46,7 +46,7 @@ export default {
informedDocSign: state => state.informedDocSign,
informPatientSign: state => state.informPatientSign,
checkSign: state => state.checkSign,
fundusDocSign: state => state.fundusDocSign,
fundusDocSign: state => state.fundusDocSign,
kinSign: state => state.kinSign,
performerSign: state => state.performerSign,
checkerSign: state => state.checkerSign
@ -192,7 +192,7 @@ export default {
this.commit('informedDocSign', img_base64)
} else if (state.type === 11) {
this.commit('informPatientSign', img_base64)
} else if (state.type === 12) {
} else if (state.type === 12) {
this.commit('fundusDocSign', img_base64)
} else if (state.type === 13) {
this.commit('kinSign', img_base64)
@ -247,7 +247,7 @@ export default {
},
checkSign(state, val) {
state.checkSign = val
}
},
fundusDocSign(state, val) {
state.fundusDocSign = val
},

2
src/page-subspecialty/views/modules/nurseManagement/reservation/schedule/addPatientOrder.vue

@ -1,5 +1,5 @@
<template>
<el-dialog top="30px" class="number-manage" append-to-body :visible.sync="visible" width="40%" :title="title" :before-close="closeDialog">
<el-dialog top="30px" class="number-manage" append-to-body :visible.sync="visible" width="50%" :title="title" :before-close="closeDialog">
<el-form ref="addPatientForm" :rules="dataRule" size="small" :model="form" label-width="90px">
<el-form-item required label="选择患者:" prop="patientId">
<el-input v-model="form.patientId" :readonly="isEdit" suffix-icon="el-icon-search" placeholder="请输入登记号" @change="searchPatient" />

Loading…
Cancel
Save