see999 3 years ago
parent
commit
f4f2690437

+ 12 - 0
src/router/modules/dialysis.js View File

@@ -447,6 +447,18 @@ export default {
447 447
         noCache: true
448 448
       }
449 449
     },
450
+    {
451
+      path: '/dialysis/print/batch/fortyThree',
452
+      component: () =>
453
+        import('@/xt_pages/dialysis/batch_print/batch_print_order_fortyThree'),
454
+      hidden: true,
455
+      is_menu: false,
456
+      name: 'batch_print_order_fortyThree',
457
+      meta: {
458
+        title: '批量打印',
459
+        noCache: true
460
+      }
461
+    },
450 462
     {
451 463
       path: '/dialysis/print/batch/thirtyThree_one',
452 464
       component: () =>

File diff suppressed because it is too large
+ 1551 - 0
src/xt_pages/dialysis/batch_print/batch_print_order_fortyThree.vue


+ 12 - 0
src/xt_pages/dialysis/bloodPresssWatch.vue View File

@@ -289,6 +289,16 @@
289 289
           >批量打印</el-button
290 290
         >
291 291
       </template>
292
+      <template v-if="this.template_id == 43">
293
+        <el-button
294
+          size="small"
295
+          icon="el-icon-printer"
296
+          :disabled="selecting_schs.length == 0"
297
+          @click="batchPrintAction"
298
+          type="primary"
299
+          >批量打印</el-button
300
+        >
301
+      </template>
292 302
     </div>
293 303
     <div class="app-container">
294 304
       <!-- <div class="filter-container">
@@ -881,6 +891,8 @@ export default {
881 891
         this.$router.push({ path: "/dialysis/print/batch/forty" });
882 892
       } else if (this.template_id == 41) {
883 893
         this.$router.push({ path: "/dialysis/print/batch/fortyOne" });
894
+      } else if (this.template_id == 43) {
895
+        this.$router.push({ path: "/dialysis/print/batch/fortyThree" });
884 896
       }
885 897
     },
886 898
     batchPrintActionOne: function() {

+ 4 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderFortyThree.vue View File

@@ -302,8 +302,8 @@
302 302
                   <td width="60" style="height:20px;line-height:20px">动脉压</td>
303 303
                   <td width="60" style="height:20px;line-height:20px">跨膜压</td>
304 304
                   <td width="60" style="height:20px;line-height:20px">温度</td>
305
-                  <td width="60" style="height:20px;line-height:20px" v-if="prescription.mode_id != 2">超滤率</td>
306
-                  <td width="60" style="height:20px;line-height:20px" v-if="prescription.mode_id != 2">超滤量</td>
305
+                  <td width="60" style="height:20px;line-height:20px">超滤率</td>
306
+                  <td width="60" style="height:20px;line-height:20px">超滤量</td>
307 307
                   <td width="60" style="height:20px;line-height:20px" v-if="prescription.mode_id == 2">置换率</td>
308 308
                   <td width="60" style="height:20px;line-height:20px" v-if="prescription.mode_id == 2">置换量</td>
309 309
                   <td width="60" style="height:20px;line-height:20px">血容量</td>
@@ -326,8 +326,8 @@
326 326
                   
327 327
                   <td>&nbsp;<span v-if="monitor.operate_time">{{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "/" }}</span></td>
328 328
                   <td>&nbsp;<span v-if="monitor.operate_time">{{monitor.dialysate_temperature ? monitor.dialysate_temperature : '/'}}</span></td>
329
-                  <td v-if="prescription.mode_id != 2">&nbsp;<span v-if="monitor.operate_time">{{ monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '/'}}</span></td>
330
-                  <td v-if="prescription.mode_id != 2">&nbsp;<span v-if="monitor.operate_time">{{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "/" }}</span></td>
329
+                  <td>&nbsp;<span v-if="monitor.operate_time">{{ monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '/'}}</span></td>
330
+                  <td>&nbsp;<span v-if="monitor.operate_time">{{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "/" }}</span></td>
331 331
                   <td v-if="prescription.mode_id == 2">&nbsp;<span v-if="monitor.operate_time">{{ monitor.replacement_rate ? monitor.replacement_rate : '/'}}</span></td>
332 332
                   <td v-if="prescription.mode_id == 2">&nbsp;<span v-if="monitor.operate_time">{{ monitor.displacement_quantity ? monitor.displacement_quantity : "/" }}</span></td>
333 333
                   <td>&nbsp;<span v-if="monitor.operate_time">{{ monitor.accumulated_blood_volume ? monitor.accumulated_blood_volume : "/" }}</span></td>