XMLWAN 3 years ago
parent
commit
92fa9b62dd
1 changed files with 15 additions and 15 deletions
  1. 15 15
      src/xt_pages/workforce/components/nextTableWeeks.vue

+ 15 - 15
src/xt_pages/workforce/components/nextTableWeeks.vue View File

@@ -150,8 +150,8 @@
150 150
                 <span v-if="org_id!=10131">{{ scope.row.dialysissolution.dialyzer_perfusion_apparatus }}</span>
151 151
                 <span v-if="org_id==10131">{{ scope.row.dialysissolution.dialyzer_perfusion_apparatus }}</span>
152 152
                 <!-- <span v-if="org_id ==10131">{{getDialysisDialyszerPerfusionOne(scope.row.patient_id)}}</span> -->
153
-              </span> 
154
-             <span v-if="scope.row.dialysissolution.dialyzer_perfusion_apparatus =='' && scope.row.dialysissolution.length>0 ">{{ getDialysisDialyszerPerfusion(scope.row.patient_id) }}</span> 
153
+              </span>
154
+             <span v-if="scope.row.dialysissolution.dialyzer_perfusion_apparatus =='' && scope.row.dialysissolution.length>0 ">{{ getDialysisDialyszerPerfusion(scope.row.patient_id) }}</span>
155 155
           </span>
156 156
           {{scope.row.dialysissolution.dialysis_dialyszers}}
157 157
          <span v-if="scope.row.dialysissolution.dialysis_dialyszers!='' && scope.row.dialysissolution.dialysis_irrigation!=''">/</span>
@@ -306,9 +306,9 @@ export default {
306 306
     };
307 307
   },
308 308
   watch: {
309
-  
309
+
310 310
     weekTime: function() {
311
-      
311
+
312 312
       var theType = this.weekType(this.weekTime);
313 313
       this.getSchedules(theType);
314 314
     }
@@ -324,7 +324,7 @@ export default {
324 324
         var arr = newArr.join(",")
325 325
         var str = ""
326 326
         if(this.zone == 0){
327
-           str = arr  
327
+           str = arr
328 328
         }
329 329
         if(zone != 0){
330 330
           str = zone.join(",")
@@ -352,7 +352,7 @@ export default {
352 352
         var arr = newArr.join(",")
353 353
         var str = ""
354 354
         if(this.zone == 0){
355
-           str = arr  
355
+           str = arr
356 356
         }
357 357
         if(zone != 0){
358 358
           str = zone.join(",")
@@ -388,10 +388,10 @@ export default {
388 388
             for(let i=0;i<scheduleData.length;i++){
389 389
               if(scheduleData.prescription.id > 0){
390 390
                  newList.push(scheduleData[i])
391
-              } 
391
+              }
392 392
             }
393 393
             var arr =   newList.sort(this.compare('sort'))
394
-            console.log("元旦快乐",arr)
394
+            // console.log("元旦快乐",arr)
395 395
             this.scheduleData = arr
396 396
           }
397 397
 
@@ -400,14 +400,14 @@ export default {
400 400
             for(let i=0;i<scheduleData.length;i++){
401 401
               if(scheduleData.prescription.id == 0){
402 402
                  newList.push(scheduleData[i])
403
-              } 
403
+              }
404 404
             }
405 405
             var arr =   newList.sort(this.compare('sort'))
406 406
             console.log("元旦快乐",arr)
407 407
             this.scheduleData = arr
408 408
           }
409
-        
410
-         
409
+
410
+
411 411
         } else {
412 412
           this.$message.error("网络错误");
413 413
           return false;
@@ -603,7 +603,7 @@ export default {
603 603
             doctor_advice[i].remark +
604 604
             "\n";
605 605
 
606
-          
606
+
607 607
         }
608 608
         return name;
609 609
       }
@@ -640,7 +640,7 @@ export default {
640 640
           }
641 641
         }
642 642
        return name
643
-    }, 
643
+    },
644 644
     changeZone(val){
645 645
       this.zone = val
646 646
       this.getNextScheduleWeekDay()
@@ -654,7 +654,7 @@ export default {
654 654
         var arr = newArr.join(",")
655 655
         var str = ""
656 656
         if(this.zone == 0){
657
-           str = arr  
657
+           str = arr
658 658
         }
659 659
         if(zone != 0){
660 660
           str = zone.join(",")
@@ -677,7 +677,7 @@ export default {
677 677
     // }
678 678
     this.getAllZoneList()
679 679
     this.org_id = this.$store.getters.xt_user.org.id
680
-   
680
+
681 681
   }
682 682
 };
683 683
 </script>