Browse Source

打印单

huangyw 2 years ago
parent
commit
9c48860339

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

@@ -1772,7 +1772,7 @@ export default {
1772 1772
       return name;
1773 1773
     },
1774 1774
     setAdminUserES(id) {
1775
-      console.log(this.operatorMaps, "this.operatorMaps");
1775
+      // console.log(this.operatorMaps, "this.operatorMaps");
1776 1776
       if (id === 0) {
1777 1777
         return "";
1778 1778
       }

+ 10 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue View File

@@ -1261,12 +1261,16 @@
1261 1261
                         </td>
1262 1262
                         <!-- 超滤量 -->
1263 1263
                         <td>
1264
-                          {{
1265
-                            monitor.ultrafiltration_volume
1266
-                              ? monitor.ultrafiltration_volume
1267
-                              : ""
1268
-                          }}
1264
+                          <span v-if="monindex == 0"> 0 </span>
1265
+                          <span v-else>
1266
+                            {{
1267
+                              monitor.ultrafiltration_volume
1268
+                                ? monitor.ultrafiltration_volume
1269
+                                : ""
1270
+                            }}
1271
+                          </span>
1269 1272
                         </td>
1273
+                        <!-- 置换量 -->
1270 1274
                         <td
1271 1275
                           v-if="
1272 1276
                             prescription.mode_id == 2 ||
@@ -1283,6 +1287,7 @@
1283 1287
                                 : ""
1284 1288
                             }}
1285 1289
                           </span>
1290
+                          
1286 1291
                         </td>
1287 1292
                         <!-- <td
1288 1293
                           v-if="

File diff suppressed because it is too large
+ 583 - 441
src/xt_pages/outpatientDoctorStation/checkTemplate/printOne.vue


+ 11 - 3
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

@@ -136,9 +136,15 @@
136 136
             >
137 137
               {{ item.doctor }}
138 138
             </span>
139
+            <span
140
+              style="width: 100px; display: inline-block"
141
+              v-else-if="doc_name != ''"
142
+            >
143
+              {{ doc_name }}
144
+            </span>
139 145
             <img
140 146
               style="height: 30px"
141
-              :src="setAdminUserES(item.creator)"
147
+              :src="setAdminUserES(item.creator,item.doctor)"
142 148
               alt=""
143 149
               srcset=""
144 150
               v-else
@@ -207,6 +213,7 @@ export default {
207 213
   },
208 214
   data() {
209 215
     return {
216
+      doc_name:"",
210 217
       doctorList: [],
211 218
       advicePrint: {},
212 219
       patient: {},
@@ -221,18 +228,19 @@ export default {
221 228
       org_id: 0,
222 229
       operatorMaps: {},
223 230
       operators: [],
224
-      doctorList_1: []
231
+      doctorList_1: [],
225 232
     };
226 233
   },
227 234
   methods: {
228 235
     // 电子签名
229
-    setAdminUserES(id) {
236
+    setAdminUserES(id,name) {
230 237
       if (id == 0) {
231 238
         return "";
232 239
       }
233 240
       if (id in this.operatorMaps) {
234 241
         return this.operatorMaps[id].url;
235 242
       } else {
243
+        this.doc_name = name
236 244
         return "";
237 245
       }
238 246
     },