Parcourir la source

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

28169 il y a 2 semaines
Parent
révision
6cd4ba4117

+ 1 - 1
build/cdn.json Voir le fichier

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "2999.999.13738"
2
+  "version": "2999.999.13744"
3 3
 }

+ 5 - 4
src/pages/main/newActionBar/doctorAdvice.vue Voir le fichier

@@ -160,7 +160,8 @@
160 160
 
161 161
             <div class="preserveBox">
162 162
               <div style="display: flex;justify-content: space-between;width: 100%;">
163
-                  <span v-if="his_is_open != 1" :class="{ forbid: is_has_create != true }" @click="showNew">新增</span>
163
+                  <span v-if="his_is_open != 1 || org_id == 10721" :class="{ forbid: is_has_create != true }" @click="showNew">新增</span>
164
+                 
164 165
                   <mu-date-input v-if="isShowExce && (org_id == 10215 || org_id == 4 || org_id == 9671 || org_id == 10340)" type="dateTime" class="dateInput" label="执行" v-model="newExecTime" @focus="onFocusExecTime" @change="execTimeFunc" container="dialog" :clock-type="'24hr'" actions></mu-date-input>
165 166
                   <span v-if="isShowExce && (org_id != 10215  && org_id != 4 && org_id!=9671 && org_id !=10340)" :class="{ forbid: is_has_exce != true || allForbidShow != true }" @click="execAdvice">执行</span>
166 167
                   <!-- <span v-if="isShowExce && (org_id ==10164 || org_id==10480)" :class="{ forbid: is_has_exce != true || allForbidShow != true }" @click="BatchExecAdvice">全部执行</span> -->
@@ -170,9 +171,9 @@
170 171
                   <span v-if="org_id!=10445 && org_id!=3877  && org_id !=10344 && org_id!=10597 && org_id!=10599 && org_id!=10624" :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || is_has_check != true || allForbidShow != true }" @click="checkAdvice">核对</span>
171 172
                  
172 173
                   <span v-if="org_id ==3877  || org_id ==10344" :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || is_has_check != true || allForbidShow != true }" @click="checkAdviceOne">核对</span>
173
-                  <span v-if="his_is_open != 1" :class="{ forbid: current_advice == null || current_advice.parent_id > 0 ||  currentAdvices.length != 1 || is_has_create != true || allForbidShow != true }" @click="openNewChild">添加子药</span>
174
-                  <span v-if="his_is_open != 1" :class="{ forbid: current_group_index < 0 ||  currentAdvices.length != 1  || current_select_object== 2 || (is_has_modify != true && is_has_modify_other != true) || allForbidShow != true || modifyOrDelete != true }" @click="modifyAdviceAction">修改</span>
175
-                  <span v-if="his_is_open != 1 && user_type !=3 " :class="{ forbid: current_group_index < 0 || currentAdvices.length <= 0 || (is_has_del != true && is_has_del_other != true) || allForbidShow != true || modifyOrDelete != true , deleteColor : true }" @click="deleteAdviceAction">删除</span>
174
+                  <span v-if="his_is_open != 1 || org_id == 10721" :class="{ forbid: current_advice == null || current_advice.parent_id > 0 ||  currentAdvices.length != 1 || is_has_create != true || allForbidShow != true }" @click="openNewChild">添加子药</span>
175
+                  <span v-if="his_is_open != 1 || org_id == 10721" :class="{ forbid: current_group_index < 0 ||  currentAdvices.length != 1  || current_select_object== 2 || (is_has_modify != true && is_has_modify_other != true) || allForbidShow != true || modifyOrDelete != true }" @click="modifyAdviceAction">修改</span>
176
+                  <span v-if="(his_is_open != 1 || org_id == 10721) && user_type !=3 " :class="{ forbid: current_group_index < 0 || currentAdvices.length <= 0 || (is_has_del != true && is_has_del_other != true) || allForbidShow != true || modifyOrDelete != true , deleteColor : true }" @click="deleteAdviceAction">删除</span>
176 177
                   <!-- <span v-if="his_is_open != 1 && user_type ==3" @click="checkAllAdvice">全部核对</span> -->
177 178
               </div>
178 179
             </div>

+ 5 - 0
src/pages/main/newActionBar/monitoring.vue Voir le fichier

@@ -2126,6 +2126,11 @@ methods: {
2126 2126
           this.form.displacement_quantity = (this.form.displacement_quantity/1000).toFixed(2)
2127 2127
        }
2128 2128
 
2129
+       if(this.org_id == 10721){
2130
+         this.form.venous_pressure = ""
2131
+         this.form.transmembrane_pressure = ""
2132
+       }
2133
+
2129 2134
 
2130 2135
       // this.form.monitor_anticoagulant = resp.monitor.monitor_anticoagulant?resp.monitor.monitor_anticoagulant:''
2131 2136
       // this.form.monitor_anticoagulant_value = resp.monitor.monitor_anticoagulant_value?resp.monitor.monitor_anticoagulant_value:''

+ 172 - 34
src/pages/main/today/TodayTab.vue Voir le fichier

@@ -130,7 +130,7 @@
130 130
                       :dialysis_order="dialysis_order"
131 131
                       :is_advice_open="is_advice_open"
132 132
                       :prescription_prop="prescription"
133
-                      
133
+
134 134
                       ref="orders_dialog"></doctorAdvice>
135 135
         <!-- 双人核对 -->
136 136
         <doubleCheck v-if="barActive == 5" :patient_prop="patient" ref="doubleCheck"
@@ -236,7 +236,7 @@
236 236
           {{ total }}
237 237
         </span>
238 238
     </div>
239
-     
239
+
240 240
     <van-dialog v-model="dry_visibility"  width="90%"  show-cancel-button>
241 241
       <div style="margin:10px;height:100px; overflow-y: scroll;">
242 242
         <div style="">
@@ -542,7 +542,7 @@ export default {
542 542
         { title: '接诊评估', name: 'accepts_assessment', value: 0, is_show: 1 },
543 543
         { title: '透前评估', name: 'assessment_before', value: 0, is_show: 1 },
544 544
         { title: '临时医嘱', name: 'stat_order', value: 0, is_show: 0},
545
-       
545
+
546 546
         { title: '双人核对', name: 'double_check', value: 0, is_show: 2 },
547 547
         { title: '透析上机', name: 'dialysis_computer', value: 0, is_show: 2},
548 548
         { title: '透析监测', name: 'dialysis_monitoring', value: 0, is_show: 2 },
@@ -550,8 +550,8 @@ export default {
550 550
         { title: '透后评估', name: 'assessment_after', value: 0, is_show: 1},
551 551
         { title: '治疗小结', name: 'treatment_of', value: 0, is_show: 1},
552 552
         { title: '耗材出库', name: 'dialysis_consumables', value: 0, is_show: 0},
553
-      
554
-       
553
+
554
+
555 555
       ]
556 556
       if (!isNaN(this.prescribeOne.id) && this.prescribeOne.id > 0 && this.prescribeOne.creater > 0) {
557 557
         steps[1].value = 1
@@ -745,7 +745,7 @@ export default {
745 745
       this.dx = this.moveBtn.offsetLeft
746 746
       this.dy = this.moveBtn.offsetTop
747 747
       console.log('this.moveBtn.offsetLeft',this.moveBtn.offsetLeft);
748
-      
748
+
749 749
     },
750 750
     move (event) {
751 751
       if (this.flags) {
@@ -1145,11 +1145,16 @@ export default {
1145 1145
       if (popupIndex >= 0) {
1146 1146
         if (popupIndex == 4) {
1147 1147
           if (this.his_is_open == 1) {
1148
-            if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
1148
+            if(this.$store.getters.user.template_info.org_id!=10721){
1149
+              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
1149 1150
               this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
1150
-            } else {
1151
+              } else {
1152
+                this.menuList[popupIndex].showPopup = true
1153
+              }
1154
+            }else {
1151 1155
               this.menuList[popupIndex].showPopup = true
1152 1156
             }
1157
+           
1153 1158
           } else {
1154 1159
             this.menuList[popupIndex].showPopup = true
1155 1160
           }
@@ -1260,7 +1265,7 @@ export default {
1260 1265
 
1261 1266
           var all_projcet = []
1262 1267
 
1263
-         
1268
+
1264 1269
 
1265 1270
           if (this.$store.getters.user.template_info.org_id == 10318) {
1266 1271
             var project = resp.data.project // 项目
@@ -1355,9 +1360,9 @@ export default {
1355 1360
                   console.log("arr----------------",arr)
1356 1361
                   this.project.push(...arr)
1357 1362
                 }
1358
-              
1363
+
1359 1364
               }
1360
-            
1365
+
1361 1366
             }
1362 1367
 
1363 1368
           }
@@ -1415,7 +1420,7 @@ export default {
1415 1420
               his_doctor_advices[i]['origin'] = 2
1416 1421
               his_doctor_advices[i]['way'] = 1
1417 1422
               if (doctor_advices != null) {
1418
-                 
1423
+
1419 1424
                 //针对 濉溪杏康血液透析中心
1420 1425
                 if(this.$store.getters.user.template_info.org_id == 10721){
1421 1426
                   if(his_doctor_advices[i].execution_frequency.indexOf("上机前") == -1 && his_doctor_advices[i].delivery_way.indexOf("口服")==-1){
@@ -1425,7 +1430,7 @@ export default {
1425 1430
                   doctor_advices.push(his_doctor_advices[i])
1426 1431
                 }
1427 1432
 
1428
-               
1433
+
1429 1434
               } else {
1430 1435
                   doctor_advices = []
1431 1436
                   //针对 濉溪杏康血液透析中心
@@ -1565,7 +1570,7 @@ export default {
1565 1570
             this.blood_access_part_opera_name = this.getBloodAccessOpera(this.prescription.blood_access)
1566 1571
           }
1567 1572
           }
1568
-         
1573
+
1569 1574
 
1570 1575
           if (this.his_is_open != 1) {
1571 1576
             if (this.doctor_advices.length > 0) {
@@ -1664,7 +1669,7 @@ export default {
1664 1669
           this.is_project_open = resp.data.is_project_open_config.is_open
1665 1670
 
1666 1671
           console.log("项目姐夫------------------------",this.project)
1667
-          
1672
+
1668 1673
           if (this.project != null && this.is_project_open == 1) {
1669 1674
             this.project.map(item => {
1670 1675
               let obj = {
@@ -2635,13 +2640,20 @@ export default {
2635 2640
               setTimeout(() => {
2636 2641
                 if (index == 4) {
2637 2642
                   if (this.his_is_open == 1) {
2638
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2643
+                    if(this.$store.getters.user.template_info.org_id!=10721){
2644
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2639 2645
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2640 2646
                     } else {
2641 2647
                       this.$nextTick(() => {
2642 2648
                         this.barActive = index
2643 2649
                       })
2644 2650
                     }
2651
+                    }else{
2652
+                      this.$nextTick(() => {
2653
+                        this.barActive = index
2654
+                      })
2655
+                    }
2656
+                  
2645 2657
                   } else {
2646 2658
                     this.$nextTick(() => {
2647 2659
                       this.barActive = index
@@ -2658,13 +2670,20 @@ export default {
2658 2670
             this.requestDialysisRecord()
2659 2671
             if (index == 4) {
2660 2672
               if (this.his_is_open == 1) {
2661
-                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2673
+                if(this.$store.getters.user.template_info.org_id!=10721){
2674
+                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2662 2675
                   this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2663 2676
                 } else {
2664 2677
                   this.$nextTick(() => {
2665 2678
                     this.barActive = index
2666 2679
                   })
2667 2680
                 }
2681
+                }else{
2682
+                  this.$nextTick(() => {
2683
+                    this.barActive = index
2684
+                  })
2685
+                }
2686
+               
2668 2687
               } else {
2669 2688
                 this.$nextTick(() => {
2670 2689
                   this.barActive = index
@@ -2679,13 +2698,20 @@ export default {
2679 2698
         } else {
2680 2699
           if (index == 4) {
2681 2700
             if (this.his_is_open == 1) {
2682
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2701
+              if(this.$store.getters.user.template_info.org_id!=10721){
2702
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2683 2703
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2684 2704
               } else {
2685 2705
                 this.$nextTick(() => {
2686 2706
                   this.barActive = index
2687 2707
                 })
2688 2708
               }
2709
+              }else{
2710
+                this.$nextTick(() => {
2711
+                  this.barActive = index
2712
+                })
2713
+              }
2714
+             
2689 2715
             } else {
2690 2716
               this.$nextTick(() => {
2691 2717
                 this.barActive = index
@@ -2708,13 +2734,20 @@ export default {
2708 2734
                 // this.requestDialysisRecord()
2709 2735
                 if (index == 4) {
2710 2736
                   if (this.his_is_open == 1) {
2711
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2737
+                    if(this.$store.getters.user.template_info.org_id!=10721){
2738
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2712 2739
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2713 2740
                     } else {
2714 2741
                       this.$nextTick(() => {
2715 2742
                         this.barActive = index
2716 2743
                       })
2717 2744
                     }
2745
+                    }else{
2746
+                      this.$nextTick(() => {
2747
+                        this.barActive = index
2748
+                      })
2749
+                    }
2750
+                   
2718 2751
                   } else {
2719 2752
                     this.$nextTick(() => {
2720 2753
                       this.barActive = index
@@ -2732,13 +2765,20 @@ export default {
2732 2765
               this.requestDialysisRecord()
2733 2766
               if (index == 4) {
2734 2767
                 if (this.his_is_open == 1) {
2735
-                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2768
+                  if(this.$store.getters.user.template_info.org_id!=10721){
2769
+                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2736 2770
                     this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2737 2771
                   } else {
2738 2772
                     this.$nextTick(() => {
2739 2773
                       this.barActive = index
2740 2774
                     })
2741 2775
                   }
2776
+                  }else{
2777
+                    this.$nextTick(() => {
2778
+                      this.barActive = index
2779
+                    })
2780
+                  }
2781
+                
2742 2782
                 } else {
2743 2783
                   this.$nextTick(() => {
2744 2784
                     this.barActive = index
@@ -2753,13 +2793,20 @@ export default {
2753 2793
         } else {
2754 2794
           if (index == 4) {
2755 2795
             if (this.his_is_open == 1) {
2756
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2796
+              if(this.$store.getters.user.template_info.org_id!=10721){
2797
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2757 2798
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2758 2799
               } else {
2759 2800
                 this.$nextTick(() => {
2760 2801
                   this.barActive = index
2761 2802
                 })
2762 2803
               }
2804
+              }else{
2805
+                this.$nextTick(() => {
2806
+                  this.barActive = index
2807
+                })
2808
+              }
2809
+           
2763 2810
             } else {
2764 2811
               this.$nextTick(() => {
2765 2812
                 this.barActive = index
@@ -2782,13 +2829,20 @@ export default {
2782 2829
               // this.requestDialysisRecord()
2783 2830
                 if (index == 4) {
2784 2831
                   if (this.his_is_open == 1) {
2785
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2832
+                    if(this.$store.getters.user.template_info.org_id!=10721){
2833
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2786 2834
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2787 2835
                     } else {
2788 2836
                       this.$nextTick(() => {
2789 2837
                         this.barActive = index
2790 2838
                       })
2791 2839
                     }
2840
+                    }else{
2841
+                      this.$nextTick(() => {
2842
+                        this.barActive = index
2843
+                      })
2844
+                    }
2845
+                   
2792 2846
                   } else {
2793 2847
                     this.$nextTick(() => {
2794 2848
                       this.barActive = index
@@ -2806,13 +2860,20 @@ export default {
2806 2860
               this.requestDialysisRecord()
2807 2861
               if (index == 4) {
2808 2862
                 if (this.his_is_open == 1) {
2809
-                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2863
+                  if(this.$store.getters.user.template_info.org_id!=10721){
2864
+                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2810 2865
                     this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2811 2866
                   } else {
2812 2867
                     this.$nextTick(() => {
2813 2868
                       this.barActive = index
2814 2869
                     })
2815 2870
                   }
2871
+                  }else{
2872
+                    this.$nextTick(() => {
2873
+                      this.barActive = index
2874
+                    })
2875
+                  }
2876
+                 
2816 2877
                 } else {
2817 2878
                   this.$nextTick(() => {
2818 2879
                     this.barActive = index
@@ -2827,13 +2888,20 @@ export default {
2827 2888
         } else {
2828 2889
           if (index == 4) {
2829 2890
             if (this.his_is_open == 1) {
2830
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2891
+              if(this.$store.getters.user.template_info.org_id!=10721){
2892
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2831 2893
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2832 2894
               } else {
2833 2895
                 this.$nextTick(() => {
2834 2896
                   this.barActive = index
2835 2897
                 })
2836 2898
               }
2899
+              }else{
2900
+                this.$nextTick(() => {
2901
+                  this.barActive = index
2902
+                })
2903
+              }
2904
+            
2837 2905
             } else {
2838 2906
               this.$nextTick(() => {
2839 2907
                 this.barActive = index
@@ -2856,13 +2924,20 @@ export default {
2856 2924
                 // this.requestDialysisRecord()
2857 2925
                 if (index == 4) {
2858 2926
                   if (this.his_is_open == 1) {
2859
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2927
+                    if(this.$store.getters.user.template_info.org_id!=10721){
2928
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2860 2929
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2861 2930
                     } else {
2862 2931
                       this.$nextTick(() => {
2863 2932
                         this.barActive = index
2864 2933
                       })
2865 2934
                     }
2935
+                    }else{
2936
+                      this.$nextTick(() => {
2937
+                        this.barActive = index
2938
+                      })
2939
+                    }
2940
+                   
2866 2941
                   } else {
2867 2942
                     this.$nextTick(() => {
2868 2943
                       this.barActive = index
@@ -2880,13 +2955,20 @@ export default {
2880 2955
               this.requestDialysisRecord()
2881 2956
               if (index == 4) {
2882 2957
                 if (this.his_is_open == 1) {
2883
-                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2958
+                  if(this.$store.getters.user.template_info.org_id!=10721){
2959
+                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2884 2960
                     this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2885 2961
                   } else {
2886 2962
                     this.$nextTick(() => {
2887 2963
                       this.barActive = index
2888 2964
                     })
2889 2965
                   }
2966
+                  }else{
2967
+                    this.$nextTick(() => {
2968
+                      this.barActive = index
2969
+                    })
2970
+                  }
2971
+                 
2890 2972
                 } else {
2891 2973
                   this.$nextTick(() => {
2892 2974
                     this.barActive = index
@@ -2901,13 +2983,20 @@ export default {
2901 2983
         } else {
2902 2984
           if (index == 4) {
2903 2985
             if (this.his_is_open == 1) {
2904
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2986
+              if(this.$store.getters.user.template_info.org_id!=10721){
2987
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2905 2988
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2906 2989
               } else {
2907 2990
                 this.$nextTick(() => {
2908 2991
                   this.barActive = index
2909 2992
                 })
2910 2993
               }
2994
+              }else{
2995
+                this.$nextTick(() => {
2996
+                  this.barActive = index
2997
+                })
2998
+              }
2999
+            
2911 3000
             } else {
2912 3001
               this.$nextTick(() => {
2913 3002
                 this.barActive = index
@@ -2930,13 +3019,20 @@ export default {
2930 3019
                 // this.requestDialysisRecord()
2931 3020
                 if (index == 4) {
2932 3021
                   if (this.his_is_open == 1) {
2933
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3022
+                    if(this.$store.getters.user.template_info.org_id!=10721){
3023
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2934 3024
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2935 3025
                     } else {
2936 3026
                       this.$nextTick(() => {
2937 3027
                         this.barActive = index
2938 3028
                       })
2939 3029
                     }
3030
+                    }else{
3031
+                      this.$nextTick(() => {
3032
+                        this.barActive = index
3033
+                      })
3034
+                    }
3035
+                   
2940 3036
                   } else {
2941 3037
                     this.$nextTick(() => {
2942 3038
                       this.barActive = index
@@ -2954,13 +3050,20 @@ export default {
2954 3050
               this.requestDialysisRecord()
2955 3051
               if (index == 4) {
2956 3052
                 if (this.his_is_open == 1) {
2957
-                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3053
+                  if(this.$store.getters.user.template_info.org_id!=10721){
3054
+                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2958 3055
                     this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2959 3056
                   } else {
2960 3057
                     this.$nextTick(() => {
2961 3058
                       this.barActive = index
2962 3059
                     })
2963 3060
                   }
3061
+                  }else{
3062
+                    this.$nextTick(() => {
3063
+                      this.barActive = index
3064
+                    })
3065
+                  }
3066
+                 
2964 3067
                 } else {
2965 3068
                   this.$nextTick(() => {
2966 3069
                     this.barActive = index
@@ -2975,13 +3078,20 @@ export default {
2975 3078
         } else {
2976 3079
           if (index == 4) {
2977 3080
             if (this.his_is_open == 1) {
2978
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3081
+              if(this.$store.getters.user.template_info.org_id!=10721){
3082
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
2979 3083
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
2980 3084
               } else {
2981 3085
                 this.$nextTick(() => {
2982 3086
                   this.barActive = index
2983 3087
                 })
2984 3088
               }
3089
+              }else{
3090
+                this.$nextTick(() => {
3091
+                  this.barActive = index
3092
+                })
3093
+              }
3094
+             
2985 3095
             } else {
2986 3096
               this.$nextTick(() => {
2987 3097
                 this.barActive = index
@@ -3004,13 +3114,20 @@ export default {
3004 3114
                 // this.requestDialysisRecord()
3005 3115
                 if (index == 4) {
3006 3116
                   if (this.his_is_open == 1) {
3007
-                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3117
+                    if(this.$store.getters.user.template_info.org_id!=10721){
3118
+                      if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3008 3119
                       this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
3009 3120
                     } else {
3010 3121
                       this.$nextTick(() => {
3011 3122
                         this.barActive = index
3012 3123
                       })
3013 3124
                     }
3125
+                    }else{
3126
+                      this.$nextTick(() => {
3127
+                        this.barActive = index
3128
+                      })
3129
+                    }
3130
+                   
3014 3131
                   } else {
3015 3132
                     this.$nextTick(() => {
3016 3133
                       this.barActive = index
@@ -3028,13 +3145,20 @@ export default {
3028 3145
               this.requestDialysisRecord()
3029 3146
               if (index == 4) {
3030 3147
                 if (this.his_is_open == 1) {
3031
-                  if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3148
+                  if(this.$store.getters.user.template_info.org_id!=10721){
3149
+                    if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3032 3150
                     this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
3033 3151
                   } else {
3034 3152
                     this.$nextTick(() => {
3035 3153
                       this.barActive = index
3036 3154
                     })
3037 3155
                   }
3156
+                  }else{
3157
+                    this.$nextTick(() => {
3158
+                      this.barActive = index
3159
+                    })
3160
+                  }
3161
+                 
3038 3162
                 } else {
3039 3163
                   this.$nextTick(() => {
3040 3164
                     this.barActive = index
@@ -3049,13 +3173,20 @@ export default {
3049 3173
         } else {
3050 3174
           if (index == 4) {
3051 3175
             if (this.his_is_open == 1) {
3052
-              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3176
+              if(this.$store.getters.user.template_info.org_id!=10721){
3177
+                if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3053 3178
                 this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
3054 3179
               } else {
3055 3180
                 this.$nextTick(() => {
3056 3181
                   this.barActive = index
3057 3182
                 })
3058 3183
               }
3184
+              }else{
3185
+                this.$nextTick(() => {
3186
+                  this.barActive = index
3187
+                })
3188
+              }
3189
+             
3059 3190
             } else {
3060 3191
               this.$nextTick(() => {
3061 3192
                 this.barActive = index
@@ -3071,13 +3202,20 @@ export default {
3071 3202
         // this.requestDialysisRecord()
3072 3203
         if (index == 4) {
3073 3204
           if (this.his_is_open == 1) {
3074
-            if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3205
+            if(this.$store.getters.user.template_info.org_id!=10721){
3206
+              if (this.$store.getters.user.user.user_type == 1 || this.$store.getters.user.user.user_type == 2) {
3075 3207
               this.$router.push('/dialysis/hisOrder?id=' + this.$route.query.patient_id + '&record_date=' + parseTime(this.$route.query.date, '{y}-{m}-{d}'))
3076 3208
             } else {
3077 3209
               this.$nextTick(() => {
3078 3210
                 this.barActive = index
3079 3211
               })
3080 3212
             }
3213
+            }else{
3214
+              this.$nextTick(() => {
3215
+                this.barActive = index
3216
+              })
3217
+            }
3218
+          
3081 3219
           } else {
3082 3220
             this.$nextTick(() => {
3083 3221
               this.barActive = index