Browse Source

提交代码

陈少旭 1 year ago
parent
commit
b2bbb17d46

+ 194 - 194
src/xt_pages/workforce/components/editTableData.vue View File

@@ -2910,203 +2910,203 @@ export default {
2910 2910
       }
2911 2911
     },
2912 2912
     showSmartDialog() {
2913
-      this.dataloading = true
2913
+      // this.dataloading = true
2914 2914
       this.editableTabsValue = "1";
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
-      }
2922
-
2923
-      let params = {
2924
-        patient_id: this.cur_info.patient_id,
2925
-      };
2926
-      let data = [
2927
-        {
2928
-          checkedWeek: [],
2929
-          title: "本周",
2930
-          name: "1",
2931
-          tableWeekArrage: [],
2932
-        },
2933
-        {
2934
-          checkedWeek: [],
2935
-          title: "下周",
2936
-          name: "2",
2937
-          tableWeekArrage: [],
2938
-        },
2939
-        {
2940
-          checkedWeek: [],
2941
-          title: "下下周",
2942
-          name: "3",
2943
-          tableWeekArrage: [],
2944
-        },
2945
-      ];
2946
-      this.first_weeks = []
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
-      });
3073
-
3074
-      if(this.editableTabsValue == "1") {
3075
-        var tempDate = new Date();
3076
-        var day = tempDate.getDay();
3077
-        if (day == 0) {
3078
-          day = 7;
3079
-        }
3080
-        for (let i = 0; i < this.weeks.length; i++) {
3081
-          if (this.weeks[i].week_type < day) {
3082
-            this.weeks[i].is_edit = false;
3083
-          }
3084
-        }
3085
-      }
3086
-
3087
-
3088
-      for (let i = 0; i < this.editableTabs.length; i++) {
3089
-        for(let b = 0; b < this.editableTabs[i].tableWeekArrage.length;b++){
3090
-          data[i]["week_type"] = this.getWeekByzhongwen(data[i].week);
3091
-
3092
-
3093
-
3094
-        }
3095
-      }
3096
-
3097
-      data.sort(function (a, b) {
3098
-        return a.week_type - b.week_type;
3099
-      });
3100
-
3101
-
3102
-
3103
-      this.current_patient_data = data
3104
-      console.log("current_patient_data")
3105
-      console.log(this.current_patient_data)
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
+      // }
2922
+      //
2923
+      // let params = {
2924
+      //   patient_id: this.cur_info.patient_id,
2925
+      // };
2926
+      // let data = [
2927
+      //   {
2928
+      //     checkedWeek: [],
2929
+      //     title: "本周",
2930
+      //     name: "1",
2931
+      //     tableWeekArrage: [],
2932
+      //   },
2933
+      //   {
2934
+      //     checkedWeek: [],
2935
+      //     title: "下周",
2936
+      //     name: "2",
2937
+      //     tableWeekArrage: [],
2938
+      //   },
2939
+      //   {
2940
+      //     checkedWeek: [],
2941
+      //     title: "下下周",
2942
+      //     name: "3",
2943
+      //     tableWeekArrage: [],
2944
+      //   },
2945
+      // ];
2946
+      // this.first_weeks = []
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
+      // });
3073
+
3074
+      // if(this.editableTabsValue == "1") {
3075
+      //   var tempDate = new Date();
3076
+      //   var day = tempDate.getDay();
3077
+      //   if (day == 0) {
3078
+      //     day = 7;
3079
+      //   }
3080
+      //   for (let i = 0; i < this.weeks.length; i++) {
3081
+      //     if (this.weeks[i].week_type < day) {
3082
+      //       this.weeks[i].is_edit = false;
3083
+      //     }
3084
+      //   }
3085
+      // }
3086
+      //
3087
+      //
3088
+      // for (let i = 0; i < this.editableTabs.length; i++) {
3089
+      //   for(let b = 0; b < this.editableTabs[i].tableWeekArrage.length;b++){
3090
+      //     data[i]["week_type"] = this.getWeekByzhongwen(data[i].week);
3091
+      //
3092
+      //
3093
+      //
3094
+      //   }
3095
+      // }
3096
+      //
3097
+      // data.sort(function (a, b) {
3098
+      //   return a.week_type - b.week_type;
3099
+      // });
3100
+      //
3101
+      //
3102
+      //
3103
+      // this.current_patient_data = data
3104
+      // console.log("current_patient_data")
3105
+      // console.log(this.current_patient_data)
3106 3106
 
3107 3107
       this.smartVisible = true;
3108
-      this.current_all_sch = data;
3109
-      this.src_all_sch = data;
3108
+      // this.current_all_sch = data;
3109
+      // this.src_all_sch = data;
3110 3110
 
3111 3111
     },
3112 3112
 

+ 85 - 85
src/xt_pages/workforce/components/template_table.vue View File

@@ -1904,89 +1904,89 @@ export default {
1904 1904
       this.smartVisible = true;
1905 1905
       this.smart_keyword = "";
1906 1906
       this.all_zones = this.unique_two(this.all_zones);
1907
-
1908
-      for (let i = 0; i < this.patientList.length; i++) {
1909
-        if (this.patientList[i].id == this.cur_info.patient_id) {
1910
-          this.cur_smart_patient_name = this.patientList[i].name;
1911
-          this.cur_smart_patient_no = this.patientList[i].dialysis_no;
1912
-          this.cur_smart_patient_id = this.patientList[i].id;
1913
-        }
1914
-      }
1915
-
1916
-      let params = {
1917
-        patient_id: this.cur_smart_patient_id,
1918
-      };
1919
-
1920
-      getPatientSmartSchTemplate(params).then((response) => {
1921
-        if (response.data.state == 0) {
1922
-          return false;
1923
-        }
1924
-
1925
-        if ((response.data.data.status = 1)) {
1926
-          var data = [];
1927
-          var schedules = response.data.data.schedules_template;
1928
-          for (let i = 0; i < this.editableTabs.length; i++) {
1929
-            this.editableTabs[i].checkedWeek = [];
1930
-            this.editableTabs[i].tableWeekArrage = [];
1931
-          }
1932
-          for (let i = 0; i < schedules.length; i++) {
1933
-            if (i == 0) {
1934
-              this.editableTabsValue = schedules[0].id;
1935
-            }
1936
-            let obj = {
1937
-              id: schedules[i].id,
1938
-              checkedWeek: [],
1939
-              title: schedules[i].week,
1940
-              name: schedules[i].id,
1941
-              tableWeekArrage: schedules[i].template,
1942
-            };
1943
-            if (i == 0) {
1944
-              obj.title = "一周模版";
1945
-            } else if (i == 1) {
1946
-              obj.title = "二周模版";
1947
-            } else if (i == 2) {
1948
-              obj.title = "三周模版";
1949
-            } else if (i == 3) {
1950
-              obj.title = "四周模版";
1951
-            }
1952
-            for (let b = 0; b < schedules[i].template.length; b++) {
1953
-              let devices = [];
1954
-              for (let d = 0; d < this.devices.length; d++) {
1955
-                if (
1956
-                  this.devices[d].zone.id == schedules[i].template[b].zone_id
1957
-                ) {
1958
-                  devices.push(this.devices[d]);
1959
-                }
1960
-              }
1961
-              schedules[i].template[b]["jihaos"] = devices;
1962
-              schedules[i].template[b]["week"] = this.getWeekDay(
1963
-                schedules[i].template[b].weekday
1964
-              );
1965
-              schedules[i].template[b]["week_type"] = this.getWeekByzhongwen(
1966
-                schedules[i].template[b].weekday
1967
-              );
1968
-
1969
-              for (let c = 0; c < this.weeks.length; c++) {
1970
-                if (
1971
-                  schedules[i].template[b].weekday == this.weeks[c].week_type
1972
-                ) {
1973
-                  obj.checkedWeek.push(this.weeks[c]);
1974
-                }
1975
-              }
1976
-            }
1977
-            schedules[i].template.sort(function (a, b) {
1978
-              return a.week_type - b.week_type;
1979
-            });
1980
-            data.push(obj);
1981
-          }
1982
-
1983
-          this.editableTabs = data;
1984
-          this.current_patient_data = this.deepClone(data);
1985
-          this.current_all_schtemplate = data
1986
-        } else {
1987
-        }
1988
-      });
1989
-
1907
+      //
1908
+      // for (let i = 0; i < this.patientList.length; i++) {
1909
+      //   if (this.patientList[i].id == this.cur_info.patient_id) {
1910
+      //     this.cur_smart_patient_name = this.patientList[i].name;
1911
+      //     this.cur_smart_patient_no = this.patientList[i].dialysis_no;
1912
+      //     this.cur_smart_patient_id = this.patientList[i].id;
1913
+      //   }
1914
+      // }
1915
+      //
1916
+      // let params = {
1917
+      //   patient_id: this.cur_smart_patient_id,
1918
+      // };
1919
+      //
1920
+      // getPatientSmartSchTemplate(params).then((response) => {
1921
+      //   if (response.data.state == 0) {
1922
+      //     return false;
1923
+      //   }
1924
+      //
1925
+      //   if ((response.data.data.status = 1)) {
1926
+      //     var data = [];
1927
+      //     var schedules = response.data.data.schedules_template;
1928
+      //     for (let i = 0; i < this.editableTabs.length; i++) {
1929
+      //       this.editableTabs[i].checkedWeek = [];
1930
+      //       this.editableTabs[i].tableWeekArrage = [];
1931
+      //     }
1932
+      //     for (let i = 0; i < schedules.length; i++) {
1933
+      //       if (i == 0) {
1934
+      //         this.editableTabsValue = schedules[0].id;
1935
+      //       }
1936
+      //       let obj = {
1937
+      //         id: schedules[i].id,
1938
+      //         checkedWeek: [],
1939
+      //         title: schedules[i].week,
1940
+      //         name: schedules[i].id,
1941
+      //         tableWeekArrage: schedules[i].template,
1942
+      //       };
1943
+      //       if (i == 0) {
1944
+      //         obj.title = "一周模版";
1945
+      //       } else if (i == 1) {
1946
+      //         obj.title = "二周模版";
1947
+      //       } else if (i == 2) {
1948
+      //         obj.title = "三周模版";
1949
+      //       } else if (i == 3) {
1950
+      //         obj.title = "四周模版";
1951
+      //       }
1952
+      //       for (let b = 0; b < schedules[i].template.length; b++) {
1953
+      //         let devices = [];
1954
+      //         for (let d = 0; d < this.devices.length; d++) {
1955
+      //           if (
1956
+      //             this.devices[d].zone.id == schedules[i].template[b].zone_id
1957
+      //           ) {
1958
+      //             devices.push(this.devices[d]);
1959
+      //           }
1960
+      //         }
1961
+      //         schedules[i].template[b]["jihaos"] = devices;
1962
+      //         schedules[i].template[b]["week"] = this.getWeekDay(
1963
+      //           schedules[i].template[b].weekday
1964
+      //         );
1965
+      //         schedules[i].template[b]["week_type"] = this.getWeekByzhongwen(
1966
+      //           schedules[i].template[b].weekday
1967
+      //         );
1968
+      //
1969
+      //         for (let c = 0; c < this.weeks.length; c++) {
1970
+      //           if (
1971
+      //             schedules[i].template[b].weekday == this.weeks[c].week_type
1972
+      //           ) {
1973
+      //             obj.checkedWeek.push(this.weeks[c]);
1974
+      //           }
1975
+      //         }
1976
+      //       }
1977
+      //       schedules[i].template.sort(function (a, b) {
1978
+      //         return a.week_type - b.week_type;
1979
+      //       });
1980
+      //       data.push(obj);
1981
+      //     }
1982
+      //
1983
+      //     this.editableTabs = data;
1984
+      //     this.current_patient_data = this.deepClone(data);
1985
+      //     this.current_all_schtemplate = data
1986
+      //   } else {
1987
+      //   }
1988
+      // });
1989
+      //
1990 1990
 
1991 1991
       this.smartVisible = true;
1992 1992
     },
@@ -3132,7 +3132,7 @@ export default {
3132 3132
       }
3133 3133
 
3134 3134
       this.$message.error("设备不存在");
3135
-    }, 
3135
+    },
3136 3136
      will_add_schedule_action_four: function(patient_id, treat_mode, weekday, time_type, device_number_id) {
3137 3137
       var patient = null
3138 3138
       for (let index = 0; index < this.patients.length; index++) {
@@ -4552,7 +4552,7 @@ export default {
4552 4552
 <style lang="scss">
4553 4553
 .table_contain {
4554 4554
   display: flex;
4555
-  
4555
+
4556 4556
 .left_contain {
4557 4557
   width: 14%;
4558 4558
   margin-right: 50px;

+ 78 - 78
src/xt_pages/workforce/components/template_table_three.vue View File

@@ -1187,84 +1187,84 @@ export default {
1187 1187
       this.smart_keyword = ""
1188 1188
       this.all_zones =  this.unique_two(this.all_zones)
1189 1189
 
1190
-      for (let i = 0; i < this.patientList.length; i++) {
1191
-        if (this.patientList[i].id == this.cur_info.patient_id) {
1192
-          this.cur_smart_patient_name = this.patientList[i].name
1193
-          this.cur_smart_patient_no = this.patientList[i].dialysis_no
1194
-          this.cur_smart_patient_id = this.patientList[i].id
1195
-
1196
-        }
1197
-      }
1198
-
1199
-      let params = {
1200
-        patient_id: this.cur_smart_patient_id
1201
-      }
1202
-
1203
-      getPatientSmartSchTemplate(params).then((response) => {
1204
-        if (response.data.state == 0) {
1205
-          return false;
1206
-        }
1207
-
1208
-        if (response.data.data.status = 1) {
1209
-          var data = []
1210
-          var schedules = response.data.data.schedules_template;
1211
-          for(let i = 0; i < this.editableTabs.length; i++){
1212
-            this.editableTabs[i].checkedWeek = []
1213
-            this.editableTabs[i].tableWeekArrage = []
1214
-
1215
-          }
1216
-          for (let i = 0; i < schedules.length; i++) {
1217
-            if (i == 0) {
1218
-              this.editableTabsValue = schedules[0].id
1219
-
1220
-            }
1221
-            let obj = {
1222
-              id: schedules[i].id,
1223
-              checkedWeek: [],
1224
-              title: schedules[i].week,
1225
-              name: schedules[i].id,
1226
-              tableWeekArrage: schedules[i].template,
1227
-            }
1228
-            if (i == 0){
1229
-              obj.title = "一周模版"
1230
-            }else if(i == 1){
1231
-              obj.title = "二周模版"
1232
-            }else if(i == 2){
1233
-              obj.title = "三周模版"
1234
-            }else if(i == 3){
1235
-              obj.title = "四周模版"
1236
-            }
1237
-            for (let b = 0; b < schedules[i].template.length; b++) {
1238
-              let devices = []
1239
-              for(let d = 0; d < this.devices.length; d++){
1240
-                if(this.devices[d].zone.id ==  schedules[i].template[b].zone_id){
1241
-                  devices.push(this.devices[d])
1242
-                }
1243
-              }
1244
-              schedules[i].template[b]["jihaos"] = devices
1245
-              schedules[i].template[b]["week"] = this.getWeekDay(schedules[i].template[b].weekday)
1246
-              schedules[i].template[b]["week_type"] = this.getWeekByzhongwen(schedules[i].template[b].weekday)
1247
-
1248
-              for (let c = 0; c < this.weeks.length; c++) {
1249
-                if (schedules[i].template[b].weekday == this.weeks[c].week_type) {
1250
-                  obj.checkedWeek.push(this.weeks[c])
1251
-                }
1252
-              }
1253
-            }
1254
-            schedules[i].template.sort(function(a,b){return a.week_type - b.week_type;});
1255
-            data.push(obj)
1256
-          }
1257
-
1258
-          this.editableTabs = data
1259
-          this.current_all_schtemplate = data
1260
-          console.log("current_all_schtemplate")
1261
-          console.log(this.current_all_schtemplate)
1262
-
1263
-        } else {
1264
-
1265
-        }
1266
-
1267
-      });
1190
+      // for (let i = 0; i < this.patientList.length; i++) {
1191
+      //   if (this.patientList[i].id == this.cur_info.patient_id) {
1192
+      //     this.cur_smart_patient_name = this.patientList[i].name
1193
+      //     this.cur_smart_patient_no = this.patientList[i].dialysis_no
1194
+      //     this.cur_smart_patient_id = this.patientList[i].id
1195
+      //
1196
+      //   }
1197
+      // }
1198
+      //
1199
+      // let params = {
1200
+      //   patient_id: this.cur_smart_patient_id
1201
+      // }
1202
+      //
1203
+      // getPatientSmartSchTemplate(params).then((response) => {
1204
+      //   if (response.data.state == 0) {
1205
+      //     return false;
1206
+      //   }
1207
+      //
1208
+      //   if (response.data.data.status = 1) {
1209
+      //     var data = []
1210
+      //     var schedules = response.data.data.schedules_template;
1211
+      //     for(let i = 0; i < this.editableTabs.length; i++){
1212
+      //       this.editableTabs[i].checkedWeek = []
1213
+      //       this.editableTabs[i].tableWeekArrage = []
1214
+      //
1215
+      //     }
1216
+      //     for (let i = 0; i < schedules.length; i++) {
1217
+      //       if (i == 0) {
1218
+      //         this.editableTabsValue = schedules[0].id
1219
+      //
1220
+      //       }
1221
+      //       let obj = {
1222
+      //         id: schedules[i].id,
1223
+      //         checkedWeek: [],
1224
+      //         title: schedules[i].week,
1225
+      //         name: schedules[i].id,
1226
+      //         tableWeekArrage: schedules[i].template,
1227
+      //       }
1228
+      //       if (i == 0){
1229
+      //         obj.title = "一周模版"
1230
+      //       }else if(i == 1){
1231
+      //         obj.title = "二周模版"
1232
+      //       }else if(i == 2){
1233
+      //         obj.title = "三周模版"
1234
+      //       }else if(i == 3){
1235
+      //         obj.title = "四周模版"
1236
+      //       }
1237
+      //       for (let b = 0; b < schedules[i].template.length; b++) {
1238
+      //         let devices = []
1239
+      //         for(let d = 0; d < this.devices.length; d++){
1240
+      //           if(this.devices[d].zone.id ==  schedules[i].template[b].zone_id){
1241
+      //             devices.push(this.devices[d])
1242
+      //           }
1243
+      //         }
1244
+      //         schedules[i].template[b]["jihaos"] = devices
1245
+      //         schedules[i].template[b]["week"] = this.getWeekDay(schedules[i].template[b].weekday)
1246
+      //         schedules[i].template[b]["week_type"] = this.getWeekByzhongwen(schedules[i].template[b].weekday)
1247
+      //
1248
+      //         for (let c = 0; c < this.weeks.length; c++) {
1249
+      //           if (schedules[i].template[b].weekday == this.weeks[c].week_type) {
1250
+      //             obj.checkedWeek.push(this.weeks[c])
1251
+      //           }
1252
+      //         }
1253
+      //       }
1254
+      //       schedules[i].template.sort(function(a,b){return a.week_type - b.week_type;});
1255
+      //       data.push(obj)
1256
+      //     }
1257
+      //
1258
+      //     this.editableTabs = data
1259
+      //     this.current_all_schtemplate = data
1260
+      //     console.log("current_all_schtemplate")
1261
+      //     console.log(this.current_all_schtemplate)
1262
+      //
1263
+      //   } else {
1264
+      //
1265
+      //   }
1266
+      //
1267
+      // });
1268 1268
 
1269 1269
       this.smartVisible = true
1270 1270