Ver código fonte

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

XMLWAN 3 anos atrás
pai
commit
e6e49e03a5

+ 3 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue Ver arquivo

@@ -1420,7 +1420,7 @@ export default {
1420 1420
         for (let index = 0; index < this.monitors.length; index++) {
1421 1421
           const monitor = this.monitors[index]
1422 1422
           this.monitors[index].end = ''
1423
-          if (Object.keys(monitor).length > 0 && index > 1) {
1423
+          if (Object.keys(monitor).length > 0 && index >= 1) {
1424 1424
             if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
1425 1425
               if(this.org_id != 10233){
1426 1426
                 this.monitors[index].end = '【结束透析】回血100ml/min'
@@ -1438,6 +1438,8 @@ export default {
1438 1438
             }
1439 1439
           }
1440 1440
         }
1441
+        
1442
+        console.log('this.monitors',this.monitors)
1441 1443
 
1442 1444
         this.jilurow = this.monitors.length + 1
1443 1445