Browse Source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 year ago
parent
commit
504d680b0f

+ 1 - 1
src/xt_pages/dialysis/details/NavIgation.vue View File

@@ -193,7 +193,7 @@
193 193
       :prescription="prescription"
194 194
       :predialysis_evaluation="predialysis_evaluation"
195 195
       :dialysis_order="dialysis_order"
196
-    
196
+      :schedual="temp_schedual"
197 197
     ></assessment-after-dislysis>
198 198
   </div>
199 199
 </template>

+ 22 - 4
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

@@ -746,6 +746,9 @@ export default {
746 746
         return { id: 0 }
747 747
       }
748 748
     },
749
+    schedual: {
750
+        type: Object
751
+    },
749 752
   },
750 753
   data() {
751 754
     return {
@@ -1095,7 +1098,11 @@ export default {
1095 1098
     submitForm(formName) {
1096 1099
       this.$refs[formName].validate((valid)=>{
1097 1100
         if(valid){
1098
-
1101
+          var dateOne = this.schedual.schedule_date
1102
+          var schedule_date = uParseTime(dateOne, '{y}-{m}-{d}')      
1103
+          var date = this.$route.query && this.$route.query.date 
1104
+          this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') :schedule_date
1105
+          console.log("日期我哦我",this.record_date)
1099 1106
           this.loading = true
1100 1107
           const ParamsQuery = {}
1101 1108
 
@@ -1509,7 +1516,17 @@ export default {
1509 1516
              this.infoDialogVisible = false
1510 1517
            }
1511 1518
         })
1512
-      }
1519
+      },
1520
+      getTime(val) {
1521
+         if(val < 0){
1522
+           return ""
1523
+         }
1524
+         if(val == ""){
1525
+          return ""
1526
+         }else {
1527
+          return uParseTime(val, '{y}-{m}-{d}')
1528
+         }
1529
+      },
1513 1530
   },
1514 1531
   created() {
1515 1532
     // console.log("this.form", this.form.consciousness);
@@ -1537,8 +1554,9 @@ export default {
1537 1554
     this.template_id = this.$store.getters.xt_user.template_info.template_id
1538 1555
     this.channels = this.$store.getters.channels
1539 1556
 
1540
-    var date = this.$route.query && this.$route.query.date
1541
-    this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') : parseTime(new Date(), '{y}-{m}-{d}')
1557
+   
1558
+    // this.record_date = date ? uParseTime(date, '{y}-{m}-{d}') : parseTime(new Date(), '{y}-{m}-{d}')
1559
+   
1542 1560
     if(this.$store.getters.xt_user.template_info.org_id == 0 ||  this.$store.getters.xt_user.template_info.org_id==9829 ||  this.$store.getters.xt_user.template_info.org_id==10469){
1543 1561
       this.form.pulse_frequency = 80
1544 1562
     }

+ 16 - 11
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

@@ -2235,16 +2235,18 @@
2235 2235
                 </td> -->
2236 2236
                   <!-- <td width="10%" v-if="(advice.children && advice.children.length > 0 || advice.parent_id > 0) && advice.isShow == 2" ></td> -->
2237 2237
                   <td height="32px">
2238
-                    <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{
2239
-                      getAdminUser(advice.advice_doctor)
2240
-                    }}</span>
2241
-                    <img
2242
-                      style="height: 30px"
2243
-                      :src="setAdminUserES(advice.advice_doctor)"
2244
-                      alt=""
2245
-                      srcset=""
2246
-                      v-else
2247
-                    />
2238
+                    <span v-if="advice!=null && advice.advice_doctor>0">
2239
+                      <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{
2240
+                        getAdminUser(advice.advice_doctor)
2241
+                      }}</span>
2242
+                      <img
2243
+                        style="height: 30px"
2244
+                        :src="setAdminUserES(advice.advice_doctor)"
2245
+                        alt=""
2246
+                        srcset=""
2247
+                        v-else
2248
+                      />
2249
+                   </span>
2248 2250
                   </td>
2249 2251
                   <!-- <td height="35px">
2250 2252
                   <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
@@ -3199,7 +3201,8 @@
3199 3201
                         class="under_line"
3200 3202
                         style="width: 80px; text-align: center"
3201 3203
                       >
3202
-                      <span
3204
+                      <span v-if="doctor_advices[0]!=null && doctor_advices[0].advice_doctor>0">
3205
+                        <span
3203 3206
                             style="height: 30px; display: inline-block"
3204 3207
                             v-if="setAdminUserES(doctor_advices[0].advice_doctor) == ''"
3205 3208
                           >
@@ -3212,6 +3215,8 @@
3212 3215
                             srcset=""
3213 3216
                             v-else
3214 3217
                           />
3218
+                      </span>
3219
+                      
3215 3220
                       </div>
3216 3221
                     </div>
3217 3222
                   </div>

+ 3 - 3
src/xt_pages/outpatientCharges/invoicePrint.vue View File

@@ -46,13 +46,13 @@
46 46
       </div>
47 47
     </div>
48 48
 
49
-    <!-- <div class="app-container" v-if="org_id == 10567 ">
49
+     <div class="app-container" v-if="org_id == 10567 || org_id == 0">
50 50
       <div class='dialysisPage'>
51 51
         <printfourteen :paramsObj="invoiceParams"></printfourteen>
52 52
       </div>
53
-    </div> -->
53
+    </div>
54 54
 
55
-    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188 || org_id == 0 ">
55
+    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188">
56 56
       <div class='dialysisPage'>
57 57
         <printthirteen  :paramsObj="invoiceParams"></printthirteen>
58 58
       </div>

+ 4 - 3
src/xt_pages/outpatientCharges/invoiceTemplate/printfourteen.vue View File

@@ -3,6 +3,7 @@
3 3
     <div>
4 4
       <div style="display: inline-block; position: absolute;top: 30px;left: 30px;">{{list.order.mdtrt_id}}</div>
5 5
 
6
+
6 7
     </div>
7 8
     <div>
8 9
       <div style="display: inline-block; position: absolute;top: 60px;left: 30px;">血液透析中心</div>
@@ -22,9 +23,9 @@
22 23
     <div style="display:flex;justify-content: space-between;">
23 24
       <div  style="position: absolute;top:120px;left:60px;" v-if="list.gender == 1">√</div>
24 25
       <div  style="position: absolute;top:120px;left:80px;" v-else-if="list.gender == 2">√</div>
25
-      <div  style="position: absolute;top:120px;left:200px;">0.00</div>
26
-      <div  style="position: absolute;top:120px;left:300px;">560.40</div>
27
-      <div  style="position: absolute;top:120px;left:400px;">全自费</div>
26
+      <div  style="position: absolute;top:120px;left:200px;">{{list.order.fund_pay_sumamt}}</div>
27
+      <div  style="position: absolute;top:120px;left:300px;">{{list.psn_cash_money}}</div>
28
+      <div  style="position: absolute;top:120px;left:400px;">{{"医保-门慢"}}</div>
28 29
     </div>
29 30
     <div style="display:flex;justify-content: space-between;">
30 31
       <div v-if="list.westernMedicineCostTotal != ''">

+ 2 - 1
src/xt_pages/outpatientCharges/statementPrint.vue View File

@@ -309,7 +309,7 @@ export default {
309 309
           //   scanStyles: false,
310 310
           // });
311 311
         } else if (
312
-          this.$store.getters.xt_user.org_id == 10485 
312
+          this.$store.getters.xt_user.org_id == 10485
313 313
         ) {
314 314
           const style =
315 315
             '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;}table tr td {padding: 5px;line-height: 30px;border: none;}'
@@ -429,6 +429,7 @@ export default {
429 429
 
430 430
       }
431 431
 
432
+
432 433
     },
433 434
     getAllHisPatientList() {
434 435
       const params = {

+ 48 - 3
src/xt_pages/outpatientCharges/summary.vue View File

@@ -137,7 +137,7 @@
137 137
 <!--           <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
138 138
           <!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
139 139
           <!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
140
-<!--           <el-button size="small" type="primary" @click="export_detail_six">报表下载9</el-button>-->
140
+<!--           <el-button size="small" type="primary" @click="export_detail_six">诊疗下载</el-button>-->
141 141
           <!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
142 142
           <!--  <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
143 143
 
@@ -287,6 +287,7 @@
287 287
                 v-if="scope.row.order_status == 2 && scope.row.result.id == 0"
288 288
             >
289 289
               上传结算清单
290
+
290 291
             </el-button>
291 292
 
292 293
             <el-button
@@ -316,6 +317,7 @@
316 317
               查询结算清单
317 318
             </el-button>
318 319
 
320
+
319 321
             <el-button
320 322
                 size="mini"
321 323
                 type="primary"
@@ -324,6 +326,14 @@
324 326
             >
325 327
               撤销结算清单
326 328
             </el-button>
329
+
330
+            <el-button
331
+              size="mini"
332
+              type="primary"
333
+              @click="cancelUploadThree(scope.row)"
334
+            >
335
+              更改结算清单状态为未提交
336
+            </el-button>
327 337
             <el-button
328 338
                 size="mini"
329 339
                 type="primary"
@@ -864,6 +874,41 @@ export default {
864 874
         });
865 875
 
866 876
 
877
+    },cancelUploadThree(row){
878
+      var that = this;
879
+      // if(this.$store.getters.xt_user.org_id == 10191){
880
+        axios
881
+          .get("http://127.0.0.1:9532/api/comfirm/upload", {
882
+            params: {
883
+              order_id: row.id,
884
+              admin_user_id: this.$store.getters.xt_user.user.id,
885
+              stas_type: 0
886
+            },
887
+          })
888
+          .then(function (response) {
889
+            if (response.data.state == 0) {
890
+              that.$message.error(response.data.msg);
891
+              return false;
892
+            } else {
893
+              if (response.data.data.failed_code == -10) {
894
+                that
895
+                  .$confirm(response.data.data.msg, "医保错误信息", {
896
+                    confirmButtonText: "确 定",
897
+                    type: "warning",
898
+                  })
899
+                  .then(() => {
900
+                  })
901
+                  .catch(() => {
902
+                  });
903
+              } else {
904
+                that.$message.success("确认成功");
905
+                row.result.id = response.data.data.result.id;
906
+              }
907
+            }
908
+          })
909
+          .catch(function (error) {
910
+          });
911
+      // }
867 912
     },
868 913
     confirmUploadInfo(row){
869 914
       var that = this;
@@ -1123,7 +1168,7 @@ export default {
1123 1168
                 id_card_no: order.certno,
1124 1169
                 level: "未定级",
1125 1170
                 psn_type: order.psn_type,
1126
-                date: "2022年3月",
1171
+                date: "202年3月",
1127 1172
                 start_time: order.his.in_hosptial_time,
1128 1173
                 end_time: order.his.out_hosptial_time,
1129 1174
                 total: order.info[b].det_item_fee_sumamt,
@@ -1726,7 +1771,7 @@ export default {
1726 1771
           var tarList = []
1727 1772
           for (let i = 0; i < list.length; i++) {
1728 1773
             let obj = {
1729
-              "周期": "2022年第二季度",
1774
+              "周期": "2023年第三季度",
1730 1775
               "类别": "门诊",
1731 1776
               "医保目录编码": list[i].code,
1732 1777
               "医保目录名称": list[i].name,

+ 2 - 2
src/xt_pages/role/admin.vue View File

@@ -209,12 +209,12 @@
209 209
           @click="toCheckPDFInformation">PDF验证</el-button> -->
210 210
 
211 211
 
212
-          <el-button
212
+          <!-- <el-button
213 213
           type="primary"
214 214
           size="small"
215 215
           icon="el-icon-circle-plus-outline"
216 216
           style="float:left"
217
-          @click="toAutoDrug">自动生成</el-button>
217
+          @click="toAutoDrug">自动生成</el-button> -->
218 218
 
219 219
 
220 220
      </div>

+ 1 - 1
src/xt_pages/user/Informed/Informedconsent.vue View File

@@ -14,7 +14,7 @@
14 14
                     prefix-icon="el-icon-search"
15 15
                     v-model="input2" style="width: 200px;">
16 16
                   </el-input>
17
-                  <el-button type="primary">查看图片</el-button>
17
+                  <!-- <el-button type="primary">查看图片</el-button> -->
18 18
                 </div>
19 19
                 <div>
20 20
                   <el-table

+ 17 - 3
src/xt_pages/user/components/PatientDetail.vue View File

@@ -292,6 +292,20 @@
292 292
               </el-form-item>
293 293
              </el-col>
294 294
 
295
+             <el-col :span="24">
296
+              <el-form-item label="主管护士 : " prop="record_number">
297
+                <el-select v-model="form.nurse" style="width:200px"   disabled>
298
+                <el-option
299
+                  v-for="(item,index) in adminUserOptions"
300
+                  :key="index"
301
+                  :label="item.name"
302
+                  :value="item.id"
303
+               
304
+                />
305
+              </el-select>
306
+              </el-form-item>
307
+             </el-col>
308
+
295 309
               <el-col :span="6">
296 310
               <el-form-item
297 311
                 label="本院前透析频率 : "
@@ -1756,9 +1770,9 @@ export default {
1756 1770
             // if (patietInfo.attending_doctor_id > 0) {
1757 1771
             //   this.form.doctor = patietInfo.attending_doctor_id;
1758 1772
             // }
1759
-            // if (patietInfo.head_nurse_id > 0) {
1760
-            //   this.form.nurse = patietInfo.head_nurse_id;
1761
-            // }
1773
+            if (patietInfo.head_nurse_id > 0) {
1774
+              this.form.nurse = patietInfo.head_nurse_id;
1775
+            }
1762 1776
             // if (patietInfo.registrars_id > 0) {
1763 1777
             //   this.form.registrars = patietInfo.registrars_id;
1764 1778
             // }

+ 21 - 4
src/xt_pages/user/components/PatientForm.vue View File

@@ -343,6 +343,19 @@
343 343
               </el-form-item>
344 344
              </el-col>
345 345
 
346
+             <el-col :span="24">
347
+              <el-form-item label="主管护士 : " prop="record_number">
348
+                <el-select v-model="form.nurse" style="width:200px">
349
+                <el-option
350
+                  v-for="(item,index) in adminUserOptions"
351
+                  :key="index"
352
+                  :label="item.name"
353
+                  :value="item.id"
354
+                />
355
+              </el-select>
356
+              </el-form-item>
357
+             </el-col>
358
+
346 359
             <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
347 360
               <el-form-item
348 361
                 label="本院前透析频率 : "
@@ -1027,7 +1040,7 @@
1027 1040
           </el-col>
1028 1041
 
1029 1042
          <el-col :span="6">
1030
-          <el-form-item label="医生 : ">
1043
+          <el-form-item label="主治医生 : ">
1031 1044
             <el-select v-model="form.doctor">
1032 1045
                 <el-option
1033 1046
                   v-for="(item,index) in adminUserOptions"
@@ -1157,6 +1170,7 @@ const defaultForm = {
1157 1170
   troble_shoot:2,
1158 1171
   zb_patient_id:"",
1159 1172
   doctor:"",
1173
+  nurse:"",
1160 1174
   patient_source:0,
1161 1175
   patient_start_time:"",
1162 1176
   patient_end_time:"",
@@ -1593,6 +1607,7 @@ export default {
1593 1607
         if (response.data.state === 1) {
1594 1608
           this.form.doctor = this.$store.getters.xt_user.user.id
1595 1609
           this.adminUserOptions = response.data.data.users;
1610
+          
1596 1611
 
1597 1612
         }
1598 1613
       });
@@ -1663,6 +1678,7 @@ export default {
1663 1678
             this.form.user_sys_before_count = this.form.user_sys_before_count.toString();
1664 1679
             this.form.troble_shoot = parseInt(this.form.troble_shoot)
1665 1680
             this.form.doctor = parseInt(this.form.doctor)
1681
+            this.form.nurse = parseInt(this.form.nurse)
1666 1682
             if(this.form.patient_source >0){
1667 1683
               this.form.patient_source = parseInt(this.form.patient_source)
1668 1684
             }else{
@@ -1714,6 +1730,7 @@ export default {
1714 1730
             this.form.age = parseInt(this.form.age);
1715 1731
             this.form.troble_shoot = parseInt(this.form.troble_shoot)
1716 1732
             this.form.doctor = parseInt(this.form.doctor)
1733
+            this.form.nurse = parseInt(this.form.nurse)
1717 1734
             if(this.form.patient_source >0){
1718 1735
               this.form.patient_source = parseInt(this.form.patient_source)
1719 1736
             }else{
@@ -2043,9 +2060,9 @@ export default {
2043 2060
             // if (patietInfo.attending_doctor_id > 0) {
2044 2061
             //   this.form.doctor = patietInfo.attending_doctor_id;
2045 2062
             // }
2046
-            // if (patietInfo.head_nurse_id > 0) {
2047
-            //   this.form.nurse = patietInfo.head_nurse_id;
2048
-            // }
2063
+            if (patietInfo.head_nurse_id > 0) {
2064
+              this.form.nurse = patietInfo.head_nurse_id;
2065
+            }
2049 2066
             // if (patietInfo.registrars_id > 0) {
2050 2067
             //   this.form.registrars = patietInfo.registrars_id;
2051 2068
             // }

+ 39 - 1
src/xt_pages/user/patients.vue View File

@@ -268,6 +268,20 @@
268 268
           </ul>
269 269
         </div>
270 270
       </div> -->
271
+      <div  class="cell clearfix">
272
+        <label class="title"><span class="name">主管护士</span> : </label>
273
+        <el-select v-model="form.nurse" style="width:200px">
274
+            <el-option
275
+              placeholder="主管护士"
276
+              v-for="(item,index) in adminUserOptions"
277
+              :key="index"
278
+              :label="item.name"
279
+              :value="item.id"
280
+              @change="changeNuseSearch"
281
+            
282
+            />
283
+        </el-select>
284
+      </div>
271 285
       <div class="cell clearfix">
272 286
         <label class="title"><span class="name">其它查询</span> : </label>
273 287
         <el-select
@@ -335,8 +349,13 @@
335 349
           >
336 350
           </el-option>
337 351
         </el-select>
352
+      
353
+  
338 354
         <el-button type="primary" size="small" style="float:right" @click="toExport">导出</el-button>
339 355
       </div>
356
+      <div  class="cell clearfix">
357
+
358
+      </div>
340 359
 
341 360
       <el-table
342 361
         ref="multipleTable"
@@ -720,6 +739,7 @@
720 739
 </template>
721 740
 
722 741
 <script>
742
+  import { fetchAllAdminUsers } from "@/api/doctor";
723 743
   import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic } from '@/api/patient'
724 744
   import { generateLog } from '@/api/config'
725 745
   import QRCode from 'qrcodejs2'
@@ -869,6 +889,7 @@
869 889
           isscheduling: '',
870 890
           isprescription: '',
871 891
           patientSoureType:'',
892
+          nurse:0,
872 893
         },
873 894
         multipleSelection: [],
874 895
         bindWechatDialog: false,
@@ -899,7 +920,9 @@
899 920
           patient_address:"",
900 921
           patient_start_time:"",
901 922
           patient_end_time:"",
902
-        }
923
+          nurse:"0"
924
+        },
925
+        adminUserOptions:[]
903 926
       }
904 927
     },
905 928
     created() {
@@ -918,9 +941,21 @@
918 941
       }
919 942
       //获取
920 943
       this.GetRemindPatientList()
944
+      this.fetchAllAdminUsers();
921 945
     },
922 946
 
923 947
     methods: {
948
+      fetchAllAdminUsers() {
949
+        fetchAllAdminUsers().then((response) => {
950
+          if (response.data.state === 1) {
951
+            var obj ={id:0,name:"全部"}
952
+            this.adminUserOptions.push(obj)
953
+            for(let i=0;i<response.data.data.users.length;i++){
954
+              this.adminUserOptions.push(response.data.data.users[i])
955
+            }
956
+          }
957
+        });
958
+      },
924 959
       putOnRecord:function(type,row){
925 960
         if(type == 1){
926 961
 
@@ -1531,6 +1566,9 @@
1531 1566
       changeOtherSearch() {
1532 1567
         this.getList()
1533 1568
       },
1569
+      changeNuseSearch(){
1570
+        this.getList()
1571
+      },
1534 1572
       getList() {
1535 1573
          console.log("query23323223wo",this.listQuery)
1536 1574
         fetchList(this.listQuery).then(response => {

+ 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