Browse Source

提交代码

陈少旭 1 year ago
parent
commit
7a6ef54d12

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

@@ -3626,7 +3626,13 @@ export default {
3626 3626
               if(temp[b].max_unit == temp[b].min_unit){
3627 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 3636
               let obj = {
3631 3637
                 advice_id: 0,
3632 3638
                 id: temp[b].id,
@@ -3646,11 +3652,9 @@ export default {
3646 3652
                 hosp_appr_flag: '1',
3647 3653
                 execution_state:2,
3648 3654
               }
3649
-
3650 3655
               if (obj.prescribing_number == 0 || obj.prescribing_number.length == 0) {
3651 3656
                 obj.prescribing_number = 1
3652 3657
               }
3653
-
3654 3658
               this.prescriptions[i].advices.push(obj)
3655 3659
             }
3656 3660
             this.curStatus = 1

+ 13 - 13
src/xt_permission.js View File

@@ -12,19 +12,19 @@ const permissionWhiteList = loginWhiteList.concat(['/']) // 权限验证白名
12 12
 
13 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 29
   NProgress.start()
30 30
   // console.log(store.getters.current_role_urls.indexOf(to.path))