Browse Source

提交代码

陈少旭 1 year ago
parent
commit
7a6ef54d12

+ 7 - 3
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

3626
               if(temp[b].max_unit == temp[b].min_unit){
3626
               if(temp[b].max_unit == temp[b].min_unit){
3627
                 temp[b].retail_price = temp[b].min_price
3627
                 temp[b].retail_price = temp[b].min_price
3628
               }
3628
               }
3629
-              let temp_index = b + 1
3629
+              let temp_index = 0
3630
+              if(this.org_id == 0 || this.org_id == 10206){
3631
+
3632
+                 temp_index  = Math.floor(Math.random() * 90 + 10);
3633
+              }else{
3634
+                 temp_index = b + 1
3635
+              }
3630
               let obj = {
3636
               let obj = {
3631
                 advice_id: 0,
3637
                 advice_id: 0,
3632
                 id: temp[b].id,
3638
                 id: temp[b].id,
3646
                 hosp_appr_flag: '1',
3652
                 hosp_appr_flag: '1',
3647
                 execution_state:2,
3653
                 execution_state:2,
3648
               }
3654
               }
3649
-
3650
               if (obj.prescribing_number == 0 || obj.prescribing_number.length == 0) {
3655
               if (obj.prescribing_number == 0 || obj.prescribing_number.length == 0) {
3651
                 obj.prescribing_number = 1
3656
                 obj.prescribing_number = 1
3652
               }
3657
               }
3653
-
3654
               this.prescriptions[i].advices.push(obj)
3658
               this.prescriptions[i].advices.push(obj)
3655
             }
3659
             }
3656
             this.curStatus = 1
3660
             this.curStatus = 1

+ 13 - 13
src/xt_permission.js View File

12
 
12
 
13
 router.beforeEach((to, from, next) => {
13
 router.beforeEach((to, from, next) => {
14
   // 线上注释
14
   // 线上注释
15
-  // if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
-  //   store.dispatch('VerifyConfigList', []).then(() => {
17
-  //     next()
18
-  //   })
19
-  // }
20
-  // if (store.getters.permission_routers === undefined) {
21
-  //   store.dispatch('xt_GenerateRoutes', []).then(() => {
22
-  //     next()
23
-  //   })
24
-  // } else {
25
-  //   next()
26
-  // }
27
-  // return
15
+  if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
16
+    store.dispatch('VerifyConfigList', []).then(() => {
17
+      next()
18
+    })
19
+  }
20
+  if (store.getters.permission_routers === undefined) {
21
+    store.dispatch('xt_GenerateRoutes', []).then(() => {
22
+      next()
23
+    })
24
+  } else {
25
+    next()
26
+  }
27
+  return
28
   // 线上注释
28
   // 线上注释
29
   NProgress.start()
29
   NProgress.start()
30
   // console.log(store.getters.current_role_urls.indexOf(to.path))
30
   // console.log(store.getters.current_role_urls.indexOf(to.path))