Browse Source

电子签名

huangyw 2 years ago
parent
commit
dbba6ed1f4

+ 0 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue View File

@@ -2976,7 +2976,6 @@ export default {
2976 2976
       return name;
2977 2977
     },
2978 2978
     setAdminUserES(id) {
2979
-      console.log(id, "opo");
2980 2979
       if (id == 0) {
2981 2980
         return "";
2982 2981
       }

+ 2 - 2
src/xt_pages/hospitalStation/template/printTwo.vue View File

@@ -10,12 +10,12 @@
10 10
             <p>年龄:{{getAge(item.patient)?getAge(item.patient):""}}岁</p>
11 11
         </div>
12 12
         <div class="infoMain">
13
-            <div style="margin-bottom: 10px;">门诊号11:{{this.hisPatient.number?this.hisPatient.number:""}}</div>
13
+            <div style="margin-bottom: 10px;">门诊号:{{this.hisPatient.number?this.hisPatient.number:""}}</div>
14 14
             <div style="margin-bottom: 10px;">科室:{{getDepart(this.hisPatient.departments?this.hisPatient.departments:"")}}</div>
15 15
             <div style="margin-bottom: 10px;">医保卡号:{{this.hisPatient.number?this.hisPatient.number:""}}</div>
16 16
             <div style="margin-bottom: 10px;">电话:{{patient.phone}}</div>
17 17
             <div>地址:{{patient.home_address}}</div>
18
-            <div style="display:flex;width:50%;">临床诊断:22222{{ getDiagnosis(advicePrint[0].info.diagnosis) }}</div>
18
+            <div style="display:flex;width:50%;">临床诊断:{{ getDiagnosis(advicePrint[0].info.diagnosis) }}</div>
19 19
         </div>
20 20
         <div class="prescriptionBox">
21 21
             <div class="Rp">Rp:</div>

+ 13 - 4
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

@@ -221,13 +221,12 @@ export default {
221 221
       org_id: 0,
222 222
       operatorMaps: {},
223 223
       operators: [],
224
-      doctorList:[]
224
+      doctorList_1: []
225 225
     };
226 226
   },
227 227
   methods: {
228 228
     // 电子签名
229 229
     setAdminUserES(id) {
230
-      console.log(id,'oo')
231 230
       if (id == 0) {
232 231
         return "";
233 232
       }
@@ -298,8 +297,18 @@ export default {
298 297
           this.advicePrint = advicePrint;
299 298
           this.prescriptions = advicePrint;
300 299
 
301
-          this.doctorList = response.data.data.advicePrint.eles
302
-
300
+          this.doctorList_1 = response.data.data.eles;
301
+          console.log(this.doctorList_1, "医生列表");
302
+          if (this.doctorList_1.length > 0) {
303
+            var operatorsLen = this.doctorList_1.length;
304
+            for (var index = 0; index < operatorsLen; index++) {
305
+              this.$set(
306
+                this.operatorMaps,
307
+                this.doctorList_1[index].creator,
308
+                this.doctorList_1[index]
309
+              );
310
+            }
311
+          }
303 312
 
304 313
           console.log("处方222222", this.prescriptions);
305 314
           var hisPatient = response.data.data.hisPatient;

File diff suppressed because it is too large
+ 608 - 420
src/xt_pages/outpatientDoctorStation/template/printThree.vue


+ 2 - 0
src/xt_pages/outpatientDoctorStation/treatPrint.vue View File

@@ -13,6 +13,8 @@
13 13
       </template> -->
14 14
             
15 15
       <div class='dialysisPage' style="padding-top:40px;">
16
+        <!-- 此下条为本地开发下页面 -->
17
+        <!-- <printTwo v-if="org_id == 4" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printTwo> -->
16 18
         <printOne v-if="org_id != 10138 && org_id != 10278" v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printOne>
17 19
         <printTwo v-else v-bind:childResponse="childResponse" :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient" :patient_id="patient_id" :record_date="record_date" :prescription_id="prescription_id"></printTwo>
18 20
       </div>

File diff suppressed because it is too large
+ 558 - 411
src/xt_pages/outpatientDoctorStation/treatTemplate/printTwo.vue