Bläddra i källkod

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

陈少旭 1 år sedan
förälder
incheckning
1cdd2e421a

+ 12 - 0
src/router/modules/dialysis.js Visa fil

@@ -350,6 +350,18 @@ export default {
350 350
       is_menu: false,
351 351
       noCache: true
352 352
     },
353
+    // 透析记录2
354
+    {
355
+      path: '/dialysis/details/indexs',
356
+      component: () => import('@/xt_pages/dialysis/details/indexs'),
357
+      name: 'details',
358
+      meta: {
359
+        title: 'details'
360
+      },
361
+      hidden: true,
362
+      is_menu: false,
363
+      noCache: true
364
+    },
353 365
 
354 366
     {
355 367
       path: '/dialysis/print/batch',

+ 9 - 9
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue Visa fil

@@ -1774,7 +1774,7 @@
1774 1774
                     </table>
1775 1775
                   </td>
1776 1776
                 </tr>
1777
-                <tr v-if="org_id!=10402 && org_id!=10206 && org_id!=0">
1777
+                <tr v-if="org_id!=10402 && org_id!=10206">
1778 1778
                   <td style="padding: 0; position: relative" colspan="2">
1779 1779
                     <table class="inside_table">
1780 1780
                       <tbody>
@@ -1946,7 +1946,7 @@
1946 1946
                   </td>
1947 1947
                 </tr>
1948 1948
 
1949
-                 <tr v-if="org_id == 10402 || org_id == 0 || org_id == 10206">
1949
+                 <tr v-if="org_id == 10402 || org_id == 10206">
1950 1950
                   <td style="padding: 0; position: relative" colspan="2">
1951 1951
                     <table class="inside_table">
1952 1952
                       <tbody>
@@ -3375,9 +3375,9 @@ export default {
3375 3375
             var delghTwo = 0;
3376 3376
             if (
3377 3377
               this.records[recordIndex].advices &&
3378
-              this.records[recordIndex].advices.length < 10
3378
+              this.records[recordIndex].advices.length < 12
3379 3379
             ) {
3380
-              delghTwo = 10 - this.records[recordIndex].advices.length;
3380
+              delghTwo = 12 - this.records[recordIndex].advices.length;
3381 3381
             } else {
3382 3382
               delghTwo = 0;
3383 3383
             }
@@ -3396,7 +3396,7 @@ export default {
3396 3396
 
3397 3397
 
3398 3398
           
3399
-            if(this.org_id == 0 || this.org_id == 10206){
3399
+            if(this.org_id == 10206){
3400 3400
               console.log("this.records[recordIndex].his_project", this.records[recordIndex].his_project)
3401 3401
               var delghThree = 0 
3402 3402
              let his_project = []
@@ -3476,12 +3476,12 @@ export default {
3476 3476
                 rightIndex in advices ? advices[i + halfLen] : []
3477 3477
               );
3478 3478
             }
3479
-            if (halfLen < 5) {
3480
-              var nl = 5 - leftAdvice.length;
3479
+            if (halfLen < 6) {
3480
+              var nl = 6 - leftAdvice.length;
3481 3481
               for (let index = 0; index < nl; index++) {
3482 3482
                 leftAdvice.push([]);
3483 3483
               }
3484
-              var nl = 5 - rightAdvice.length;
3484
+              var nl = 6 - rightAdvice.length;
3485 3485
               for (let index = 0; index < nl; index++) {
3486 3486
                 rightAdvice.push([]);
3487 3487
               }
@@ -3495,7 +3495,7 @@ export default {
3495 3495
               this.records[recordIndex].advices.push(item);
3496 3496
             }
3497 3497
           }
3498
-          console.log(this.records, "this.records");
3498
+          console.log("数据我哦我我", this.records);
3499 3499
           // this.records.forEach(o => {
3500 3500
           //   console.log(o,'jj')
3501 3501
           //   this.blood_access_part_opera_name = this.bloodAccessParOperaName(

+ 37 - 32
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Visa fil

@@ -1826,34 +1826,39 @@
1826 1826
                     </td> -->
1827 1827
                         <!-- <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td> -->
1828 1828
                         <td height="32px">
1829
-                          <span
1830
-                            v-if="setAdminUserES(advice.advice_doctor) == ''"
1831
-                            >{{ getAdminUser(advice.advice_doctor) }}</span
1832
-                          >
1833
-                          <img
1834
-                            style="height: 30px"
1835
-                            :src="setAdminUserES(advice.advice_doctor)"
1836
-                            alt=""
1837
-                            srcset=""
1838
-                            v-else
1839
-                          />
1829
+                          <span v-if="advice!=null && advice.advice_doctor>0">
1830
+                              <span
1831
+                              v-if="setAdminUserES(advice.advice_doctor) == ''"
1832
+                              >{{ getAdminUser(advice.advice_doctor) }}
1833
+                            </span>
1834
+                            <img
1835
+                              style="height: 30px"
1836
+                              :src="setAdminUserES(advice.advice_doctor)"
1837
+                              alt=""
1838
+                              srcset=""
1839
+                              v-else
1840
+                            />
1841
+                          </span>
1842
+                         
1840 1843
                         </td>
1841 1844
                         <!-- <td height="35px">
1842 1845
                       <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
1843 1846
                       <img style="height:20px;" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
1844 1847
                     </td> -->
1845 1848
                         <td height="32px">
1846
-                          <span
1847
-                            v-if="setAdminUserES(advice.execution_staff) == ''"
1848
-                            >{{ getAdminUser(advice.execution_staff) }}</span
1849
-                          >
1850
-                          <img
1851
-                            style="height: 30px"
1852
-                            :src="setAdminUserES(advice.execution_staff)"
1853
-                            alt=""
1854
-                            srcset=""
1855
-                            v-else
1856
-                          />
1849
+                          <span v-if="advice!=null && advice.execution_staff>0">
1850
+                            <span
1851
+                              v-if="setAdminUserES(advice.execution_staff) == ''"
1852
+                              >{{ getAdminUser(advice.execution_staff) }}</span
1853
+                            >
1854
+                            <img
1855
+                              style="height: 30px"
1856
+                              :src="setAdminUserES(advice.execution_staff)"
1857
+                              alt=""
1858
+                              srcset=""
1859
+                              v-else
1860
+                            />
1861
+                        </span>
1857 1862
                         </td>
1858 1863
                         <td height="32px">
1859 1864
                           <span v-if="advice.execution_time">{{
@@ -1861,16 +1866,16 @@
1861 1866
                           }}</span>
1862 1867
                         </td>
1863 1868
                         <td height="32px" v-if="org_id == 10223 || org_id == 9538 || org_id == 0 || org_id ==10375">
1864
-                          <span v-if="setAdminUserES(advice.checker) == ''">{{
1865
-                            getAdminUser(advice.checker)
1866
-                          }}</span>
1867
-                          <img
1868
-                            style="height: 30px"
1869
-                            :src="setAdminUserES(advice.checker)"
1870
-                            alt=""
1871
-                            srcset=""
1872
-                            v-else
1873
-                          />
1869
+                          <span v-if="advice!=null && advice.checker>0">
1870
+                            <span v-if="setAdminUserES(advice.checker) == ''">{{ getAdminUser(advice.checker)}}</span>
1871
+                            <img
1872
+                              style="height: 30px"
1873
+                              :src="setAdminUserES(advice.checker)"
1874
+                              alt=""
1875
+                              srcset=""
1876
+                              v-else
1877
+                            />
1878
+                        </span>
1874 1879
                         </td>
1875 1880
                       </tr>
1876 1881
                       <!-- </template> -->

+ 8 - 4
src/xt_pages/outpatientDoctorStation/components/dialysishistory.vue Visa fil

@@ -300,10 +300,14 @@ export default{
300 300
 
301 301
     },
302 302
     rowclick(event){
303
-      this.patient_id = event.patient_id
304
-      this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
305
-      this.drawer =true
306
-      this.dialysisShow =true
303
+      this.$router.push({
304
+        path: "/dialysis/details/indexs",
305
+        query: { patient_id: event.patient_id, date: event.dialysis_date }
306
+      });
307
+      // this.patient_id = event.patient_id
308
+      // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
309
+      // this.drawer =true
310
+      // this.dialysisShow =true
307 311
     },
308 312
     clickCurrent(){
309 313
 

+ 2 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Visa fil

@@ -111,7 +111,7 @@
111 111
             <el-tab-pane label="透析记录" name="透析记录">
112 112
             </el-tab-pane>
113 113
             <el-tab-pane label="电子病历" name="电子病历"></el-tab-pane>
114
-            <!-- <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane> -->
114
+            <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane>
115 115
 
116 116
           </el-tabs>
117 117
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
@@ -191,7 +191,7 @@
191 191
         <dialysis-index v-if="titleType == '透析记录'" :record_date="record_date" :patientid='patientid'
192 192
                         :dialysisShow="dialysisShow"></dialysis-index>
193 193
 
194
-        <!-- <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory> -->
194
+        <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory>
195 195
       </div>
196 196
 
197 197
     </div>

+ 1 - 1
src/xt_pages/user/Informed/components/Filter_informed.vue Visa fil

@@ -15,7 +15,7 @@
15 15
       <div id="print_content">
16 16
           <div class="print_page_main_content">
17 17
           <div class="content">
18
-              <h2 style="text-align: center;">血液透析(滤过、灌流)治疗知情同意书</h2>
18
+              <h2 style="text-align: center;">血液透析(滤过)治疗知情同意书</h2>
19 19
 
20 20
               <div style="text-align: right;">
21 21
                 透析号:{{ patient.dialysis_no }}

+ 1 - 1
src/xt_pages/user/courseOfDisease.vue Visa fil

@@ -684,7 +684,7 @@
684 684
             <div class="cell clearfix">
685 685
               <label class="title"><span class="name">病程日期</span> : </label>
686 686
               <el-date-picker v-model="course_of_disease_time" prefix-icon="el-icon-date" :editable="false"
687
-                              style="width: 200px;"
687
+                              style="width: 250px;"
688 688
                               type="datetime" placeholder="选择日期时间" align="right" format="yyyy-MM-dd HH:mm:ss"
689 689
                               value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
690 690
 

+ 7 - 8
src/xt_pages/user/dialysisRecord.vue Visa fil

@@ -418,7 +418,7 @@
418 418
           </div> -->
419 419
 
420 420
 
421
-          <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo>
421
+          <!-- <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo> -->
422 422
         </div>
423 423
 
424 424
       </el-drawer>
@@ -432,7 +432,6 @@ import {getDialysisScheduleDetail,getLongAdviceTwo} from '@/api/dialysis_record'
432 432
 import { uParseTime } from "@/utils/tools";
433 433
 import { parseTime } from '@/utils'
434 434
 import { fetchAllDoctorAndNurse } from "@/api/doctor";
435
-import dialysisIndextwo from '../outpatientDoctorStation/components/dialysisIndextwo'
436 435
 import print from "print-js";
437 436
 
438 437
 export default {
@@ -478,7 +477,6 @@ export default {
478 477
   },
479 478
   components: {
480 479
     PatientSidebar,
481
-    dialysisIndextwo
482 480
   },
483 481
   methods: {
484 482
     getTime(record){
@@ -682,24 +680,25 @@ export default {
682 680
       }, 1);
683 681
     },
684 682
     clickCurrent(val) {
685
-      
683
+
686 684
       this.patient_id = val.patient_id
687 685
       this.dialysis_date = val.dialysis_date
688 686
     },
689 687
     rowclick(val){
688
+      // console.log('kkkkkkk',val.dialysis_date);
690 689
       this.$router.push({
691
-        path: "/dialysis/details",
690
+        path: "/dialysis/details/indexs",
692 691
         query: { patient_id: val.patient_id, date: val.dialysis_date }
693 692
       });
694 693
       // console.log('kkkkkkk',event);
695
-      // this.patient_id = event.patient_id
696
-      // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
694
+      // this.patient_id = val.patient_id
695
+      // this.dialysis_date = parseTime(val.dialysis_date, '{y}-{m}-{d}')
697 696
       // this.drawer =true
698 697
       // this.dialysisShow =true
699 698
     },
700 699
     exportList(){
701 700
       import('@/vendor/Export2Excel').then(excel => {
702
-       
701
+
703 702
          if(this.recordData!=null && this.recordData.length > 0){
704 703
           for(let i=0;i<this.recordData.length;i++){
705 704
             this.recordData[i].dialysis_date_one = this.getTimeOne(this.recordData[i].dialysis_date)

+ 207 - 168
src/xt_pages/workforce/components/editTableData.vue Visa fil

@@ -148,6 +148,10 @@
148 148
             color: '#606266',
149 149
             // border: '1px solid aqua',
150 150
           }"
151
+            v-loading="loading"
152
+            element-loading-text="拼命加载中"
153
+            element-loading-spinner="el-icon-loading"
154
+            element-loading-background="rgba(0, 0, 0, 0.8)"
151 155
             :fit="true"
152 156
             :data="scheduleZone"
153 157
             @cell-click="clickThis"
@@ -1916,6 +1920,7 @@ export default {
1916 1920
       modename_value:true,//关闭透析模式开关
1917 1921
       Dialysis_patient:'',
1918 1922
       cur_date:"",
1923
+      loading:false,//加载
1919 1924
       dataloading:false,
1920 1925
       current_patient_data:[],
1921 1926
       week_zhongwens: ["周一", "周二", "周三", "周四", "周五", "周六", "周日"],
@@ -2905,19 +2910,19 @@ export default {
2905 2910
       }
2906 2911
     },
2907 2912
     showSmartDialog() {
2908
-      // this.dataloading = true
2913
+      this.dataloading = true
2909 2914
       this.editableTabsValue = "1";
2910
-      // for (let i = 0; i < this.patientList.length; i++) {
2911
-      //   if (this.patientList[i].id == this.cur_info.patient_id) {
2912
-      //     this.cur_smart_patient_name = this.patientList[i].name;
2913
-      //     this.cur_smart_patient_no = this.patientList[i].dialysis_no;
2914
-      //     this.cur_smart_patient_id = this.patientList[i].id;
2915
-      //   }
2916
-      // }
2915
+      for (let i = 0; i < this.patientList.length; i++) {
2916
+        if (this.patientList[i].id == this.cur_info.patient_id) {
2917
+          this.cur_smart_patient_name = this.patientList[i].name;
2918
+          this.cur_smart_patient_no = this.patientList[i].dialysis_no;
2919
+          this.cur_smart_patient_id = this.patientList[i].id;
2920
+        }
2921
+      }
2917 2922
 
2918
-      // let params = {
2919
-      //   patient_id: this.cur_info.patient_id,
2920
-      // };
2923
+      let params = {
2924
+        patient_id: this.cur_info.patient_id,
2925
+      };
2921 2926
       let data = [
2922 2927
         {
2923 2928
           checkedWeek: [],
@@ -2939,132 +2944,132 @@ export default {
2939 2944
         },
2940 2945
       ];
2941 2946
       this.first_weeks = []
2942
-      // getPatientSmartSch(params).then((response) => {
2943
-      //   if (response.data.state == 0) {
2944
-      //     return false;
2945
-      //   }
2946
-      //   var schedules = response.data.data.schedules;
2947
-      //   this.dataloading = false
2948
-      //   this.current_all_sch[0].tableWeekArrage = [];
2949
-      //   this.current_all_sch[1].tableWeekArrage = [];
2950
-      //   this.current_all_sch[2].tableWeekArrage = [];
2951
-      //   this.editableTabs[0].tableWeekArrage = [];
2952
-      //   this.editableTabs[0].checkedWeek = [];
2953
-      //   this.editableTabs[1].tableWeekArrage = [];
2954
-      //   this.editableTabs[1].checkedWeek = [];
2955
-      //   this.editableTabs[2].tableWeekArrage = [];
2956
-      //   this.editableTabs[2].checkedWeek = [];
2957
-      //   var tempDate = new Date();
2958
-      //   var day = tempDate.getDay();
2959
-      //   if (day == 0) {
2960
-      //     day = 7;
2961
-      //   }
2962
-      //
2963
-      //   for (let i = 0; i < schedules.length; i++) {
2964
-      //
2965
-      //
2966
-      //     var week_type = this.getWeekType(
2967
-      //         this.getTime(schedules[i].schedule_date, "{y}-{m}-{d}")
2968
-      //     ).toString();
2969
-      //
2970
-      //     switch (week_type) {
2971
-      //       case "1":
2972
-      //         var obj = {
2973
-      //           mode_id: schedules[i].mode_id,
2974
-      //           sch_type: schedules[i].schedule_type,
2975
-      //           zone_id: schedules[i].partition_id,
2976
-      //           jihao_id: schedules[i].bed_id,
2977
-      //           is_edit: false,
2978
-      //           week: this.getWeek(schedules[i].schedule_week),
2979
-      //           schedule_date: this.getDate(schedules[i].schedule_week),
2980
-      //           jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
2981
-      //           sch_id: schedules[i].id,
2982
-      //         };
2983
-      //         let is_edit = true;
2984
-      //         if (
2985
-      //             schedules[i].schedule_week < day ||
2986
-      //             schedules[i].order.id > 0
2987
-      //         ) {
2988
-      //           is_edit = false;
2989
-      //         } else {
2990
-      //           is_edit = true;
2991
-      //         }
2992
-      //         obj.is_edit = is_edit;
2993
-      //         console.log("schedules[i].order.id")
2994
-      //
2995
-      //         console.log(schedules[i].order.id)
2996
-      //
2997
-      //         for (let b = 0; b < this.weeks.length; b++) {
2998
-      //           if (schedules[i].schedule_week == this.weeks[b].week_type) {
2999
-      //             if (
3000
-      //                 this.weeks[b].week_type >= day &&
3001
-      //                 schedules[i].order.id == 0
3002
-      //             ) {
3003
-      //               this.weeks[b].is_edit = true;
3004
-      //             } else {
3005
-      //               let obj = {
3006
-      //                 week_type:this.weeks[b].week_type,
3007
-      //                 order_id:schedules[i].order.id,
3008
-      //               }
3009
-      //               this.first_weeks.push(obj)
3010
-      //               this.weeks[b].is_edit = false;
3011
-      //             }
3012
-      //
3013
-      //             this.editableTabs[0].checkedWeek.push(this.weeks[b]);
3014
-      //           }
3015
-      //         }
3016
-      //         data[0].tableWeekArrage.push(obj);
3017
-      //
3018
-      //         this.editableTabs[0].tableWeekArrage.push(obj);
3019
-      //         break;
3020
-      //       case "2":
3021
-      //         var obj2 = {
3022
-      //           mode_id: schedules[i].mode_id,
3023
-      //           sch_type: schedules[i].schedule_type,
3024
-      //           zone_id: schedules[i].partition_id,
3025
-      //           jihao_id: schedules[i].bed_id,
3026
-      //           is_edit: true,
3027
-      //           week: this.getWeek(schedules[i].schedule_week),
3028
-      //           schedule_date: this.getDate(schedules[i].schedule_week + 7),
3029
-      //           jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
3030
-      //           sch_id: schedules[i].id,
3031
-      //         };
3032
-      //
3033
-      //         for (let b = 0; b < this.weeks.length; b++) {
3034
-      //           if (schedules[i].schedule_week == this.weeks[b].week_type) {
3035
-      //             // this.weeks[b].is_edit = true;
3036
-      //             this.editableTabs[1].checkedWeek.push(this.weeks[b]);
3037
-      //           }
3038
-      //         }
3039
-      //         data[1].tableWeekArrage.push(obj2);
3040
-      //         this.editableTabs[1].tableWeekArrage.push(obj2);
3041
-      //         break;
3042
-      //
3043
-      //       case "3":
3044
-      //         let obj3 = {
3045
-      //           mode_id: schedules[i].mode_id,
3046
-      //           sch_type: schedules[i].schedule_type,
3047
-      //           zone_id: schedules[i].partition_id,
3048
-      //           jihao_id: schedules[i].bed_id,
3049
-      //           is_edit: true,
3050
-      //           week: this.getWeek(schedules[i].schedule_week),
3051
-      //           schedule_date: this.getDate(schedules[i].schedule_week + 14),
3052
-      //           jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
3053
-      //           sch_id: schedules[i].id,
3054
-      //         };
3055
-      //         for (let b = 0; b < this.weeks.length; b++) {
3056
-      //           if (schedules[i].schedule_week == this.weeks[b].week_type) {
3057
-      //             // this.weeks[b].is_edit = true;
3058
-      //             this.editableTabs[2].checkedWeek.push(this.weeks[b]);
3059
-      //           }
3060
-      //         }
3061
-      //         data[2].tableWeekArrage.push(obj3);
3062
-      //
3063
-      //         this.editableTabs[2].tableWeekArrage.push(obj3);
3064
-      //         break;
3065
-      //     }
3066
-      //   }
3067
-      // });
2947
+      getPatientSmartSch(params).then((response) => {
2948
+        if (response.data.state == 0) {
2949
+          return false;
2950
+        }
2951
+        var schedules = response.data.data.schedules;
2952
+        this.dataloading = false
2953
+        this.current_all_sch[0].tableWeekArrage = [];
2954
+        this.current_all_sch[1].tableWeekArrage = [];
2955
+        this.current_all_sch[2].tableWeekArrage = [];
2956
+        this.editableTabs[0].tableWeekArrage = [];
2957
+        this.editableTabs[0].checkedWeek = [];
2958
+        this.editableTabs[1].tableWeekArrage = [];
2959
+        this.editableTabs[1].checkedWeek = [];
2960
+        this.editableTabs[2].tableWeekArrage = [];
2961
+        this.editableTabs[2].checkedWeek = [];
2962
+        var tempDate = new Date();
2963
+        var day = tempDate.getDay();
2964
+        if (day == 0) {
2965
+          day = 7;
2966
+        }
2967
+
2968
+        for (let i = 0; i < schedules.length; i++) {
2969
+
2970
+
2971
+          var week_type = this.getWeekType(
2972
+              this.getTime(schedules[i].schedule_date, "{y}-{m}-{d}")
2973
+          ).toString();
2974
+
2975
+          switch (week_type) {
2976
+            case "1":
2977
+              var obj = {
2978
+                mode_id: schedules[i].mode_id,
2979
+                sch_type: schedules[i].schedule_type,
2980
+                zone_id: schedules[i].partition_id,
2981
+                jihao_id: schedules[i].bed_id,
2982
+                is_edit: false,
2983
+                week: this.getWeek(schedules[i].schedule_week),
2984
+                schedule_date: this.getDate(schedules[i].schedule_week),
2985
+                jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
2986
+                sch_id: schedules[i].id,
2987
+              };
2988
+              let is_edit = true;
2989
+              if (
2990
+                  schedules[i].schedule_week < day ||
2991
+                  schedules[i].order.id > 0
2992
+              ) {
2993
+                is_edit = false;
2994
+              } else {
2995
+                is_edit = true;
2996
+              }
2997
+              obj.is_edit = is_edit;
2998
+              console.log("schedules[i].order.id")
2999
+
3000
+              console.log(schedules[i].order.id)
3001
+
3002
+              for (let b = 0; b < this.weeks.length; b++) {
3003
+                if (schedules[i].schedule_week == this.weeks[b].week_type) {
3004
+                  if (
3005
+                      this.weeks[b].week_type >= day &&
3006
+                      schedules[i].order.id == 0
3007
+                  ) {
3008
+                    this.weeks[b].is_edit = true;
3009
+                  } else {
3010
+                    let obj = {
3011
+                      week_type:this.weeks[b].week_type,
3012
+                      order_id:schedules[i].order.id,
3013
+                    }
3014
+                    this.first_weeks.push(obj)
3015
+                    this.weeks[b].is_edit = false;
3016
+                  }
3017
+
3018
+                  this.editableTabs[0].checkedWeek.push(this.weeks[b]);
3019
+                }
3020
+              }
3021
+              data[0].tableWeekArrage.push(obj);
3022
+
3023
+              this.editableTabs[0].tableWeekArrage.push(obj);
3024
+              break;
3025
+            case "2":
3026
+              var obj2 = {
3027
+                mode_id: schedules[i].mode_id,
3028
+                sch_type: schedules[i].schedule_type,
3029
+                zone_id: schedules[i].partition_id,
3030
+                jihao_id: schedules[i].bed_id,
3031
+                is_edit: true,
3032
+                week: this.getWeek(schedules[i].schedule_week),
3033
+                schedule_date: this.getDate(schedules[i].schedule_week + 7),
3034
+                jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
3035
+                sch_id: schedules[i].id,
3036
+              };
3037
+
3038
+              for (let b = 0; b < this.weeks.length; b++) {
3039
+                if (schedules[i].schedule_week == this.weeks[b].week_type) {
3040
+                  // this.weeks[b].is_edit = true;
3041
+                  this.editableTabs[1].checkedWeek.push(this.weeks[b]);
3042
+                }
3043
+              }
3044
+              data[1].tableWeekArrage.push(obj2);
3045
+              this.editableTabs[1].tableWeekArrage.push(obj2);
3046
+              break;
3047
+
3048
+            case "3":
3049
+              let obj3 = {
3050
+                mode_id: schedules[i].mode_id,
3051
+                sch_type: schedules[i].schedule_type,
3052
+                zone_id: schedules[i].partition_id,
3053
+                jihao_id: schedules[i].bed_id,
3054
+                is_edit: true,
3055
+                week: this.getWeek(schedules[i].schedule_week),
3056
+                schedule_date: this.getDate(schedules[i].schedule_week + 14),
3057
+                jihaos: this.partitionsProp[schedules[i].partition_id].jihaos,
3058
+                sch_id: schedules[i].id,
3059
+              };
3060
+              for (let b = 0; b < this.weeks.length; b++) {
3061
+                if (schedules[i].schedule_week == this.weeks[b].week_type) {
3062
+                  // this.weeks[b].is_edit = true;
3063
+                  this.editableTabs[2].checkedWeek.push(this.weeks[b]);
3064
+                }
3065
+              }
3066
+              data[2].tableWeekArrage.push(obj3);
3067
+
3068
+              this.editableTabs[2].tableWeekArrage.push(obj3);
3069
+              break;
3070
+          }
3071
+        }
3072
+      });
3068 3073
 
3069 3074
       if(this.editableTabsValue == "1") {
3070 3075
         var tempDate = new Date();
@@ -4794,7 +4799,6 @@ export default {
4794 4799
               mode_name: "",
4795 4800
               patient_id: 0,
4796 4801
               dialysis_machine_name: "",
4797
-
4798 4802
               patient: "",
4799 4803
             };
4800 4804
             that.scheduleZone[index].Sat_N = {
@@ -4913,11 +4917,11 @@ export default {
4913 4917
             }
4914 4918
           }
4915 4919
         });
4916
-        // this.closePatientPanel();
4917 4920
       }
4918 4921
       this.creating_schedule = false;
4919 4922
     },
4920 4923
     async CreateScheduleTwo(id, data,id_two) {
4924
+      this.loading =true
4921 4925
       this.creating_schedule = true;
4922 4926
       let response =await CreateScheduleTwo(id, data,id_two)
4923 4927
 
@@ -4928,38 +4932,73 @@ export default {
4928 4932
         var schedule = response.data.data.schedule;
4929 4933
         this.creating_schedule=false;
4930 4934
         this.dialogTableVisible=false
4931
-        this.getSchedules()
4932
-        // this.scheduleZone.forEach(function (zone, index) {
4933
-        //   if (
4934
-        //     zone.zone_id == schedule.partition_id &&
4935
-        //     zone.jihao_id == schedule.bed_id
4936
-        //   ) {
4937
-        //     var weekPath = that.weekPath(
4938
-        //       schedule.schedule_week,
4939
-        //       schedule.schedule_type
4940
-        //     );
4941
-        //     if (weekPath.length == 2) {
4942
-        //       var weekPathKey = weekPath[0] + "_" + weekPath[1];
4943
-        //       that.scheduleZone[index][weekPathKey] = {
4944
-        //         schedule_id: schedule.id,
4945
-        //         mode_id: schedule.mode_id,
4946
-        //         patient_id: schedule.patient_id,
4947
-        //         patient: schedule.patient,
4948
-        //         dialysis_machine_name: schedule.dialysis_machine_name,
4949
-        //
4950
-        //         patient_contagions: that.currentData.contagions,
4951
-        //         mode_name:
4952
-        //           typeof that.modeOptions[schedule.mode_id] === "undefined"
4953
-        //             ? ""
4954
-        //             : that.modeOptions[schedule.mode_id].name,
4955
-        //       };
4956
-        //       that.scheduleZone[index].total += 1;
4957
-        //     }
4958
-        //   }
4959
-        // });
4935
+        // this.getSchedules()
4936
+        console.log('cccccc',this.cur_drag_info);
4937
+         const curdrag = this.cur_drag_info
4938
+        if(curdrag.bed_id!=''){
4939
+
4940
+          this.scheduleZone.forEach(function (zone, index) {
4941
+            if (
4942
+              zone.zone_id == schedule.partition_id &&
4943
+              zone.jihao_id == schedule.bed_id
4944
+            ) {
4945
+              // console.log('111111',zone.zone_id,zone.jihao_id);
4946
+              var weekPath = that.weekPath(
4947
+                schedule.schedule_week,
4948
+                schedule.schedule_type
4949
+              );
4950
+              console.log('22222',weekPath);
4951
+              if (weekPath.length == 2) {
4952
+                var weekPathKey = weekPath[0] + "_" + weekPath[1];
4953
+                that.scheduleZone[index][weekPathKey] = {
4954
+                  schedule_id: schedule.id,
4955
+                  mode_id: schedule.mode_id,
4956
+                  patient_id: schedule.patient_id,
4957
+                  patient: schedule.patient,
4958
+                  dialysis_machine_name: schedule.dialysis_machine_name,
4959
+                  patient_contagions: that.currentData.contagions,
4960
+                  mode_name:
4961
+                    typeof that.modeOptions[schedule.mode_id] === "undefined"
4962
+                      ? ""
4963
+                      : that.modeOptions[schedule.mode_id].name,
4964
+                };
4965
+                // console.log('3333',that.scheduleZone[index][weekPathKey]);
4966
+                that.scheduleZone[index].total += 1;
4967
+              }
4968
+            }
4969
+
4970
+            if(zone.zone_id == curdrag.partition_id &&
4971
+                zone.jihao_id == curdrag.bed_id
4972
+              ){
4973
+                // console.log('aaaaaa',curdrag);
4974
+                var weekPath = that.weekPath(
4975
+                  curdrag.schedule_week,
4976
+                  curdrag.schedule_type
4977
+                );
4978
+                console.log('aaaaaa',weekPath);
4979
+                if(weekPath.length == 2){
4980
+                  var weekPathKey = weekPath[0] + "_" + weekPath[1];
4981
+                  that.scheduleZone[index][weekPathKey] ={
4982
+                    schedule_id: '',
4983
+                    mode_id: '',
4984
+                    patient_id: '',
4985
+                    patient: '',
4986
+                    dialysis_machine_name: '',
4987
+                    patient_contagions: '',
4988
+                    mode_name:''
4989
+                  };
4990
+                  that.scheduleZone[index].total += 1;
4991
+                  }
4992
+              }
4993
+          });
4994
+        }else{
4995
+          this.getSchedules()
4996
+        }
4997
+        // return that.scheduleZone()
4960 4998
         // this.closePatientPanel();
4961 4999
       }
4962 5000
       this.creating_schedule = false;
5001
+      this.loading=false
4963 5002
     },
4964 5003
     // 单击选中患者
4965 5004
     clickThis(row, column, cell, event) {