浏览代码

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

陈少旭 2 天前
父节点
当前提交
4fa6cc56bb

+ 1 - 1
src/xt_pages/dialysis/batch_print/new_doctor_advice.vue 查看文件

@@ -13,7 +13,7 @@
13 13
       </div>
14 14
       <div class="app-container">
15 15
         <div id="print_content">
16
-          <div
16
+          <div style="page-break-after: always;"
17 17
             v-for="(record, index) in records"
18 18
             :key="index"
19 19
             class="print_page_main_content"

文件差异内容过多而无法显示
+ 498 - 496
src/xt_pages/dialysis/bloodPresssWatch.vue


+ 1 - 1
src/xt_pages/dialysis/details/consumable/dialysisDrug.vue 查看文件

@@ -335,7 +335,7 @@
335 335
         name ="IUF"
336 336
       }
337 337
       if(val == 8){
338
-        name ="IUF"
338
+        name ="HFHD"
339 339
       }
340 340
       if(val == 9){
341 341
         name ="HFHD+HP"

+ 16 - 1
src/xt_pages/dialysis/details/consumable/dialysisGood.vue 查看文件

@@ -560,7 +560,7 @@
560 560
         name ="IUF"
561 561
       }
562 562
       if(val == 8){
563
-        name ="IUF"
563
+        name ="HFHD"
564 564
       }
565 565
       if(val == 9){
566 566
         name ="HFHD+HP"
@@ -643,6 +643,21 @@
643 643
       if(val == 39){
644 644
         name = "HF16"
645 645
       }
646
+      if(val == 40){
647
+        name = "HD(无肝素)"
648
+      }
649
+      if(val == 41){
650
+        name = "HDF17H"
651
+      }
652
+      if(val == 42){
653
+        name = "HD."
654
+      }
655
+      if(val == 43){
656
+        name = "HD(2)"
657
+      }
658
+      if(val == 44){
659
+        name = "导管溶栓"
660
+      }
646 661
       return name
647 662
       },
648 663
       exportList(){

+ 3 - 1
src/xt_pages/user/patientInfo.vue 查看文件

@@ -1,9 +1,11 @@
1 1
 
2 2
 <template>
3 3
   <div class="patient-container">
4
-  <patient-sidebar :id="patientID"></patient-sidebar>
4
+  <patient-sidebar :id="patientID" v-if="org_id!=0&&org_id!=10702"></patient-sidebar>
5
+  <PatientSidebar_ord :id="patientID" v-if="org_id==0 || org_id==10702"></PatientSidebar_ord>
5 6
    <!-- <PatientSidebar_new :id="patientID"></PatientSidebar_new> -->
6 7
   <patient-detail :is-edit='true' :class='panelClass' v-on:tran-patient-info="patientInfo=$event"></patient-detail>
8
+
7 9
   </div>
8 10
 </template>
9 11
 

+ 13 - 13
src/xt_permission.js 查看文件

@@ -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))