浏览代码

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

28169 6 个月前
父节点
当前提交
b7ed2e78b8

+ 3 - 0
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/anticoagulant.vue 查看文件

@@ -322,6 +322,7 @@ import html2canvas from "html2canvas"
322 322
           page:this.currentPage,
323 323
           limit:this.limit,
324 324
         }
325
+        console.log('抗凝剂params',params);
325 326
         Getdetail(params).then(response =>{
326 327
           if(response.data.state ==1){
327 328
             const list = response.data.data.prescriptions
@@ -352,7 +353,9 @@ import html2canvas from "html2canvas"
352 353
       },
353 354
       // 详情查询
354 355
       deil_click(){
356
+        this.currentPage =1
355 357
         this.getGetdetail(this.dialyze_value)
358
+       
356 359
       },
357 360
       //导出excel
358 361
       exportExcel(){

+ 14 - 12
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/complete.vue 查看文件

@@ -223,11 +223,11 @@ import html2canvas from "html2canvas"
223 223
         limit:50,
224 224
         total:0,
225 225
         tableData:[],
226
-        // status_options:[],
226
+        status_options:[],
227 227
         nurseList:[],
228 228
         operators:[],
229 229
         docList:[],
230
-        status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'超出处方时间'},{value:3,label:'未到达处方时间'}],
230
+        // status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'超出处方时间'},{value:3,label:'未到达处方时间'}],
231 231
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
232 232
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
233 233
         ],
@@ -272,14 +272,14 @@ import html2canvas from "html2canvas"
272 272
               yAxis.push(key)
273 273
             }
274 274
             const status = []
275
-            // for(let i in yAxis){
276
-            //   const obj ={
277
-            //     value:(i*1)+1,
278
-            //     label:yAxis[i]
279
-            //   }
280
-            //   status.push(obj)
281
-            // }
282
-            // this.status_options = status
275
+            for(let i in yAxis){
276
+              const obj ={
277
+                value:(i*1)+1,
278
+                label:yAxis[i]
279
+              }
280
+              status.push(obj)
281
+            }
282
+            this.status_options = status
283 283
             console.log('this.status_options',this.status_options);
284 284
             const option = {
285 285
                 title:{
@@ -340,13 +340,14 @@ import html2canvas from "html2canvas"
340 340
             myChart.setOption(option);
341 341
             myChart.on('click',params =>{
342 342
               this.complete_dialog = true
343
-              console.log('bbbb',params);
343
+              console.log('bbbb完成率',params);
344 344
               var status_id =''
345 345
               for(let i in this.status_options){
346 346
                 if(params.data.name == this.status_options[i].label){
347 347
                   status_id = this.status_options[i].value
348 348
                 }
349 349
               }
350
+              this.status_value = status_id
350 351
               this.getdetail(status_id)
351 352
             })
352 353
           }
@@ -359,6 +360,7 @@ import html2canvas from "html2canvas"
359 360
       },
360 361
       // 详情查询
361 362
       detil_click(){
363
+        this.currentPage = 1
362 364
         this.getdetail(this.status_value)
363 365
       },
364 366
        // 下载
@@ -446,7 +448,7 @@ import html2canvas from "html2canvas"
446 448
             this.tableData = table
447 449
             this.total = response.data.data.total
448 450
           }
449
-          console.log('55555',response);
451
+          console.log('55555',params);
450 452
         })
451 453
       },
452 454
       // 选择日期

+ 3 - 1
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/dialyzer.vue 查看文件

@@ -282,7 +282,7 @@ import html2canvas from "html2canvas"
282 282
             const options = []
283 283
             for(let i in xAxis){
284 284
               const arr ={
285
-                id:i+1,
285
+                id:(i*1)+1,
286 286
                 name:xAxis[i]
287 287
               }
288 288
               options.push(arr)
@@ -375,6 +375,7 @@ import html2canvas from "html2canvas"
375 375
       },
376 376
       // 详情查询
377 377
       deil_click(){
378
+        this.currentPage =1
378 379
         this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
379 380
       },
380 381
        // 下载 
@@ -646,6 +647,7 @@ import html2canvas from "html2canvas"
646 647
       },
647 648
       getdialyze(val){
648 649
         const option = this.dialyze_options
650
+        console.log('透析器option',option);    
649 651
         for(let i in option){
650 652
           if(val == option[i].id){
651 653
             return option[i].name

+ 49 - 30
src/xt_pages/outpatientDoctorStation/doctorDesk.vue 查看文件

@@ -657,7 +657,7 @@
657 657
                   <div style="">透析器:
658 658
                    <span>{{main_collection.prescription.dialysis_dialyszers }}&nbsp;&nbsp; {{main_collection.prescription.dialysis_irrigation}}&nbsp;&nbsp; {{main_collection.prescription.dialysis_strainer}}</span>
659 659
                   </div>
660
-                 
660
+
661 661
                 </div>
662 662
 
663 663
 
@@ -2109,7 +2109,7 @@ export default {
2109 2109
               if ( this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
2110 2110
                 if (prescription.pre_time == 0) {
2111 2111
                   if (this.schedule.schedule_type == 1) {
2112
-                    if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
2112
+                    if (this.org_id == 10028 || this.org_id == 10571  || this.org_id == 10633) {
2113 2113
                       preTime = this.record_date + ' ' + '6:30'
2114 2114
                     } else if(this.org_id == 10206 || this.org_id == 10598){
2115 2115
                       preTime = this.record_date + ' ' + '6:00'
@@ -2130,13 +2130,14 @@ export default {
2130 2130
                     preTime = this.record_date + ' ' + '17:00'
2131 2131
                   }
2132 2132
                   // preTime = nowTime
2133
+                  if(this.org_id == 10510  || this.org_id == 0){
2134
+                    preTime = nowTime
2135
+                  }
2136
+
2133 2137
                 } else {
2134 2138
                   preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
2135 2139
                 }
2136 2140
 
2137
-                if(this.$store.getters.xt_user.org.id == 10510){
2138
-                  preTime = nowTime
2139
-                }
2140 2141
 
2141 2142
               } else {
2142 2143
 
@@ -2145,7 +2146,7 @@ export default {
2145 2146
                   if(nowTime.split(" ")[0] != this.record_date){
2146 2147
                     // preTime = this.record_date
2147 2148
                     if(this.schedule.schedule_type == 1){
2148
-                      if(this.org_id == 10206  || this.org_id == 0 || this.org_id == 10598) {
2149
+                      if(this.org_id == 10206   || this.org_id == 10598) {
2149 2150
                         preTime = this.record_date+ ' ' + '6:00'
2150 2151
                       }else {
2151 2152
                         preTime = this.record_date + ' ' + '7:00'
@@ -2164,7 +2165,7 @@ export default {
2164 2165
                     }
2165 2166
 
2166 2167
 
2167
-                    if(this.$store.getters.xt_user.org.id == 10510){
2168
+                    if(this.org_id == 10510  || this.org_id == 0){
2168 2169
                       preTime = nowTime
2169 2170
                     }
2170 2171
 
@@ -2317,7 +2318,7 @@ export default {
2317 2318
                 var preTime = nowTime
2318 2319
                 if (this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
2319 2320
                   if (this.schedule.schedule_type == 1) {
2320
-                    if (this.org_id == 10028 ||  this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
2321
+                    if (this.org_id == 10028 ||  this.org_id == 10571 || this.org_id == 10633) {
2321 2322
                       preTime = this.record_date + ' ' + '6:30'
2322 2323
                     } else if(this.org_id == 10206  || this.org_id == 10598) {
2323 2324
                       preTime = this.record_date+ ' ' + '6:00'
@@ -2338,7 +2339,7 @@ export default {
2338 2339
                     preTime = this.record_date + ' ' + '17:00'
2339 2340
                   }
2340 2341
 
2341
-                  if(this.$store.getters.xt_user.org.id == 10510){
2342
+                  if(this.org_id == 10510  || this.org_id == 0){
2342 2343
                     preTime = nowTime
2343 2344
                   }
2344 2345
                 }
@@ -2709,7 +2710,7 @@ export default {
2709 2710
                     if ( this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 && this.$store.getters.xt_user.org.id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
2710 2711
                       if (prescription.pre_time == 0) {
2711 2712
                         if (this.schedule.schedule_type == 1) {
2712
-                          if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
2713
+                          if (this.org_id == 10028 || this.org_id == 10571  || this.org_id == 10633) {
2713 2714
                             preTime = this.record_date + ' ' + '6:30'
2714 2715
                           } else if(this.org_id == 10206 || this.org_id == 10598){
2715 2716
                             preTime = this.record_date + ' ' + '6:00'
@@ -2730,18 +2731,18 @@ export default {
2730 2731
                         } else if (this.schedule.schedule_type == 3) {
2731 2732
                           preTime = this.record_date + ' ' + '17:00'
2732 2733
                         }
2734
+                        if(this.org_id == 10510 || this.org_id == 0 ){
2735
+                          preTime = nowTime
2736
+                        }
2733 2737
                       } else {
2734 2738
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
2735 2739
                       }
2736 2740
 
2737
-                      if(this.$store.getters.xt_user.org.id == 10510){
2738
-                        preTime = nowTime
2739
-                      }
2740 2741
                     } else {
2741 2742
                       if (prescription.pre_time == 0) {
2742 2743
                         if(nowTime.split(" ")[0] != this.record_date){
2743 2744
                           if(this.schedule.schedule_type == 1){
2744
-                            if(this.org_id == 10206  || this.org_id == 0 || this.org_id == 10598) {
2745
+                            if(this.org_id == 10206  || this.org_id == 10598) {
2745 2746
                               preTime = this.record_date+ ' ' + '6:00'
2746 2747
                             }else {
2747 2748
                               preTime = this.record_date + ' ' + '7:00'
@@ -2759,6 +2760,9 @@ export default {
2759 2760
                             preTime = this.record_date + ' ' + '17:00'
2760 2761
                           }
2761 2762
                         }
2763
+                        if(this.org_id == 10510  || this.org_id == 0){
2764
+                          preTime = nowTime
2765
+                        }
2762 2766
                         // preTime = nowTime
2763 2767
                       } else {
2764 2768
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
@@ -2907,7 +2911,7 @@ export default {
2907 2911
                       // var preTime = ''
2908 2912
                       if ( this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375) {
2909 2913
                         if (this.schedule.schedule_type == 1) {
2910
-                          if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
2914
+                          if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
2911 2915
                             preTime = this.record_date + ' ' + '6:30'
2912 2916
                           } else if(this.org_id == 10206 || this.org_id == 10598){
2913 2917
                             preTime = this.record_date + ' ' + '6:00'
@@ -2917,7 +2921,7 @@ export default {
2917 2921
                           }
2918 2922
                           // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2919 2923
                         } else if (this.schedule.schedule_type == 2) {
2920
-                          if(this.org_id == 10206  || this.org_id == 0){
2924
+                          if(this.org_id == 10206 ){
2921 2925
                             preTime =this.record_date + ' ' + '10:30'
2922 2926
                           }else if(this.org_id == 10598){
2923 2927
                             preTime = this.record_date + ' ' + '09:00'
@@ -2929,7 +2933,7 @@ export default {
2929 2933
                           preTime = this.record_date + ' ' + '17:00'
2930 2934
                         }
2931 2935
 
2932
-                        if(this.$store.getters.xt_user.org.id == 10510){
2936
+                        if(this.org_id == 10510  || this.org_id == 0){
2933 2937
                           preTime = nowTime
2934 2938
                         }
2935 2939
                       }
@@ -3395,6 +3399,9 @@ export default {
3395 3399
                           preTime = this.record_date + ' ' + '17:00'
3396 3400
                         }
3397 3401
                       }
3402
+                      if(this.org_id == 10510  || this.org_id == 0){
3403
+                        preTime = nowTime
3404
+                      }
3398 3405
                     } else {
3399 3406
                       preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
3400 3407
                     }
@@ -3981,6 +3988,9 @@ export default {
3981 3988
                         preTime = this.record_date + ' ' + '17:00'
3982 3989
                       }
3983 3990
                     }
3991
+                    if(this.org_id == 10510  || this.org_id == 0){
3992
+                      preTime = nowTime
3993
+                    }
3984 3994
                   } else {
3985 3995
                     preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
3986 3996
                   }
@@ -4646,7 +4656,7 @@ export default {
4646 4656
                           }
4647 4657
                           // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
4648 4658
                         } else if (this.schedule.schedule_type == 2) {
4649
-                          if(this.org_id == 10206  || this.org_id == 0){
4659
+                          if(this.org_id == 10206  ){
4650 4660
                             preTime = this.record_date + ' ' + '10:30'
4651 4661
 
4652 4662
                           }else if(this.org_id == 10598){
@@ -4658,20 +4668,21 @@ export default {
4658 4668
                         } else if (this.schedule.schedule_type == 3) {
4659 4669
                           preTime = this.record_date + ' ' + '17:00'
4660 4670
                         }
4671
+                        if(this.org_id == 10510  || this.org_id == 0){
4672
+                          preTime = nowTime
4673
+                        }
4661 4674
                       } else {
4662 4675
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
4663 4676
                       }
4664 4677
 
4665
-                      if(this.$store.getters.xt_user.org.id == 10510){
4666
-                        preTime = nowTime
4667
-                      }
4678
+
4668 4679
                     } else {
4669 4680
                       console.log("0---00000000000")
4670 4681
                       if (prescription.pre_time == 0) {
4671 4682
                         // preTime = nowTime
4672 4683
                         if(nowTime.split(" ")[0] != this.record_date){
4673 4684
                           if(this.schedule.schedule_type == 1){
4674
-                            if(this.org_id == 10206  || this.org_id == 0 || this.org_id == 10598) {
4685
+                            if(this.org_id == 10206  || this.org_id == 10598) {
4675 4686
                               preTime = this.record_date+ ' ' + '6:00'
4676 4687
                             }else {
4677 4688
                               preTime = this.record_date + ' ' + '7:00'
@@ -4689,6 +4700,10 @@ export default {
4689 4700
                             preTime = this.record_date + ' ' + '17:00'
4690 4701
                           }
4691 4702
                         }
4703
+                        if(this.org_id == 10510  || this.org_id == 0){
4704
+                          preTime = nowTime
4705
+                        }
4706
+
4692 4707
                       } else {
4693 4708
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
4694 4709
                       }
@@ -4835,7 +4850,7 @@ export default {
4835 4850
                       var preTime = nowTime
4836 4851
                       if (this.org_id != 9919 && this.org_id != 10485 && this.org_id != 10191 && this.$store.getters.xt_user.org.id != 10375 ) {
4837 4852
                         if (this.schedule.schedule_type == 1) {
4838
-                          if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 0 || this.org_id == 10633) {
4853
+                          if (this.org_id == 10028 || this.org_id == 10571 || this.org_id == 10633) {
4839 4854
                             preTime = this.record_date + ' ' + '6:30'
4840 4855
                           } else if(this.org_id == 10206 || this.org_id == 10598){
4841 4856
                             preTime = this.record_date+ ' ' + '6:00'
@@ -4856,7 +4871,7 @@ export default {
4856 4871
                           preTime = this.record_date + ' ' + '17:00'
4857 4872
                         }
4858 4873
 
4859
-                        if(this.$store.getters.xt_user.org.id == 10510){
4874
+                        if(this.org_id == 10510  || this.org_id == 0){
4860 4875
                           preTime = nowTime
4861 4876
                         }
4862 4877
                       }
@@ -5293,7 +5308,7 @@ export default {
5293 5308
                           }
5294 5309
                           // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
5295 5310
                         } else if (this.schedule.schedule_type == 2) {
5296
-                          if(this.org_id == 10206  || this.org_id == 0){
5311
+                          if(this.org_id == 10206 ){
5297 5312
                             preTime =this.record_date + ' ' + '10:30'
5298 5313
                           }else if(this.org_id == 10598){
5299 5314
                             preTime = this.record_date + ' ' + '09:00'
@@ -5305,13 +5320,14 @@ export default {
5305 5320
                         } else if (this.schedule.schedule_type == 3) {
5306 5321
                           preTime = this.record_date + ' ' + '17:00'
5307 5322
                         }
5323
+                        if(this.org_id == 10510  || this.org_id == 0){
5324
+                          preTime = nowTime
5325
+                        }
5308 5326
                       } else {
5309 5327
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
5310 5328
                       }
5311 5329
 
5312
-                      if(this.$store.getters.xt_user.org.id == 10510){
5313
-                        preTime = nowTime
5314
-                      }
5330
+
5315 5331
                     } else {
5316 5332
                       if (prescription.pre_time == 0) {
5317 5333
                         preTime = nowTime
@@ -5335,6 +5351,9 @@ export default {
5335 5351
                             preTime = this.record_date + ' ' + '17:00'
5336 5352
                           }
5337 5353
                         }
5354
+                        if(this.org_id == 10510  || this.org_id == 0){
5355
+                          preTime = nowTime
5356
+                        }
5338 5357
 
5339 5358
                       } else {
5340 5359
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
@@ -5491,7 +5510,7 @@ export default {
5491 5510
                           }
5492 5511
                           // preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
5493 5512
                         } else if (this.schedule.schedule_type == 2) {
5494
-                          if(this.org_id == 10206 ||  this.org_id == 0){
5513
+                          if(this.org_id == 10206 ){
5495 5514
                             preTime = this.record_date + ' ' + '10:30'
5496 5515
 
5497 5516
                           }else if(this.org_id == 10598){
@@ -5504,7 +5523,7 @@ export default {
5504 5523
                           preTime = this.record_date + ' ' + '17:00'
5505 5524
                         }
5506 5525
 
5507
-                        if(this.$store.getters.xt_user.org.id == 10510){
5526
+                        if(this.org_id == 10510  || this.org_id == 0){
5508 5527
                           preTime = nowTime
5509 5528
                         }
5510 5529
                       }