Browse Source

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

XMLWAN 3 years ago
parent
commit
e6e49e03a5
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue

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

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