瀏覽代碼

数据看板数据异常问题,搜索搜索加ico

zhengchengwu 6 年之前
父節點
當前提交
68687f6b63

文件差異過大導致無法顯示
+ 517 - 521
src/router/index.js


+ 2 - 1
src/xt_pages/dialysis/bulletinBoard.vue 查看文件

@@ -158,7 +158,8 @@
158 158
       }
159 159
     },
160 160
     created() {
161
-        this.orgname = this.$store.getters.xt_user
161
+        var xtuser = this.$store.getters.xt_user
162
+        this.orgname = xtuser.org.org_name;
162 163
         // this.orgname = "遂溪方济医院";
163 164
         this.modeOptions = this.$store.getters.treatment_mode;
164 165
         this.initData();

+ 1 - 1
src/xt_pages/qcd/outcomeIndicators/query.vue 查看文件

@@ -15,7 +15,7 @@
15 15
             <el-input v-model="listQuery.search" placeholder="姓名/透析号"></el-input>
16 16
           </el-form-item>
17 17
           <el-form-item>
18
-            <el-button type="primary" @click="onSearch">搜索</el-button>
18
+            <el-button type="primary" @click="onSearch"  icon="el-icon-search">搜索</el-button>
19 19
           </el-form-item>
20 20
         </el-form>
21 21
       </div>

+ 4 - 2
src/xt_pages/qcd/patientAnalysis/person/components/personInfo.vue 查看文件

@@ -59,9 +59,11 @@ export default {
59 59
 }
60 60
 </script>
61 61
 <style scoped>
62
+.patient-info-container {
63
+  margin: 10px 0px;
64
+}
62 65
 .patient-info-container .patient-info {
63
-    font-size: 20px;
64
-    font-weight: bold;
66
+    font-size: 16px;
65 67
 }
66 68
 </style>
67 69
 

+ 1 - 1
src/xt_pages/qcd/patientAnalysis/total.vue 查看文件

@@ -12,7 +12,7 @@
12 12
             <el-input v-model="listQuery.search" placeholder="姓名/透析号"></el-input>
13 13
           </el-form-item>
14 14
           <el-form-item>
15
-            <el-button type="primary" @click="onSearch">搜索</el-button>
15
+            <el-button type="primary" @click="onSearch" icon="el-icon-search">搜索</el-button>
16 16
           </el-form-item>
17 17
         </el-form>
18 18
       </div>

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

@@ -10,19 +10,19 @@ const permissionWhiteList = loginWhiteList.concat(['/']) // 权限验证白名
10 10
 
11 11
 router.beforeEach((to, from, next) => {
12 12
   // 线上注释
13
-  if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
14
-    store.dispatch('VerifyConfigList', []).then(() => {
15
-      next()
16
-    })
17
-  }
18
-  if (store.getters.permission_routers === undefined) {
19
-    store.dispatch('xt_GenerateRoutes', []).then(() => {
20
-      next()
21
-    })
22
-  } else {
23
-    next()
24
-  }
25
-  return
13
+  // if (!store.getters.configlist || store.getters.configlist === undefined || store.getters.configlist.length <= 0) {
14
+  //   store.dispatch('VerifyConfigList', []).then(() => {
15
+  //     next()
16
+  //   })
17
+  // }
18
+  // if (store.getters.permission_routers === undefined) {
19
+  //   store.dispatch('xt_GenerateRoutes', []).then(() => {
20
+  //     next()
21
+  //   })
22
+  // } else {
23
+  //   next()
24
+  // }
25
+  // return
26 26
   // 线上注释
27 27
 
28 28
   NProgress.start()