Преглед изворни кода

Merge branch 'superman' of http://git.shengws.com/zhangbj/xt_vue into superman

柳香萍 пре 6 година
родитељ
комит
01375c9d27

+ 1 - 1
config/dev.env.js Прегледај датотеку

@@ -6,5 +6,5 @@
6 6
 module.exports = {
7 7
   NODE_ENV: '"development"',
8 8
   ENV_CONFIG: '"dev"',
9
-  BASE_API: '"http://112.74.16.180:9527"', // '"http://localhost:9529"'//http://api.xt.test.sgjyun.com http://112.74.16.180:9527
9
+  BASE_API: '"http://localhost:9529"', // '"http://localhost:9529"'//http://api.xt.test.sgjyun.com http://112.74.16.180:9527
10 10
 }

Разлика између датотеке није приказан због своје велике величине
+ 490 - 501
src/router/index.js


+ 1 - 1
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue Прегледај датотеку

@@ -241,7 +241,7 @@
241 241
           </el-row>
242 242
         </el-form>
243 243
 
244
-        <div slot="footer" class="dialog-footer">
244
+        <div slot="footer" class="dialog-footer" v-show="edit" >
245 245
               <el-button @click="cancelEditAction">取 消</el-button>
246 246
               <el-button type="primary" @click="submitAction">保 存</el-button>
247 247
         </div>

+ 1 - 1
src/xt_pages/qcd/components/BarChart.vue Прегледај датотеку

@@ -21,7 +21,7 @@ export default {
21 21
     },
22 22
     height: {
23 23
       type: String,
24
-      default: '350px'
24
+      default: '380px'
25 25
     },
26 26
     title:{
27 27
       type: String,

+ 1 - 1
src/xt_pages/qcd/components/LineChart.vue Прегледај датотеку

@@ -19,7 +19,7 @@ export default {
19 19
     },
20 20
     height: {
21 21
       type: String,
22
-      default: '350px'
22
+      default: '380px'
23 23
     },
24 24
     autoResize: {
25 25
       type: Boolean,

+ 1 - 1
src/xt_pages/qcd/components/PieChart.vue Прегледај датотеку

@@ -19,7 +19,7 @@ export default {
19 19
     },
20 20
     height: {
21 21
       type: String,
22
-      default: '350px'
22
+      default: '380px'
23 23
     },
24 24
     title:{
25 25
       type: String,

+ 1 - 1
src/xt_pages/qcd/outcomeIndicators/control.vue Прегледај датотеку

@@ -4,7 +4,7 @@
4 4
       <bread-crumb :crumbs='crumbs'></bread-crumb>
5 5
     </div>
6 6
     <div class="app-container">
7
-      <el-tabs v-model="tabActiveName" @tab-click="handleTabClick">
7
+      <el-tabs v-model="tabActiveName" @tab-click="handleTabClick" style="margin-bottom:10px">
8 8
           <el-tab-pane label="指标控制" name="control"></el-tab-pane>
9 9
           <el-tab-pane label="指标查询" name="query"></el-tab-pane>
10 10
       </el-tabs>

+ 1 - 1
src/xt_pages/qcd/outcomeIndicators/query.vue Прегледај датотеку

@@ -4,7 +4,7 @@
4 4
       <bread-crumb :crumbs='crumbs'></bread-crumb>
5 5
     </div>
6 6
     <div class="app-container" id="outcome-indicators-query">
7
-      <el-tabs v-model="tabActiveName" @tab-click="handleTabClick">
7
+      <el-tabs v-model="tabActiveName" @tab-click="handleTabClick" style="margin-bottom:10px">
8 8
           <el-tab-pane label="指标控制" name="control"></el-tab-pane>
9 9
           <el-tab-pane label="指标查询" name="query"></el-tab-pane>
10 10
       </el-tabs>

+ 1 - 1
src/xt_pages/qcd/patientAnalysis/components/analysisNav.vue Прегледај датотеку

@@ -1,5 +1,5 @@
1 1
 <template>
2
-    <el-tabs v-model="tabActiveName" @tab-click="handleTabClick">
2
+    <el-tabs v-model="tabActiveName" @tab-click="handleTabClick" style="margin-bottom:10px">
3 3
         <el-tab-pane label="总量分析" name="total"></el-tab-pane>
4 4
         <el-tab-pane label="体重分析" name="weight"></el-tab-pane>
5 5
         <el-tab-pane label="血压分析" name="bloodpressure"></el-tab-pane>

+ 1 - 1
src/xt_pages/qcd/patientAnalysis/person/indicators.vue Прегледај датотеку

@@ -213,7 +213,7 @@ export default {
213 213
   },
214 214
   computed:{
215 215
     activeReferences:function(){
216
-      var routineBloodShowItem = {17:17,35:35,36:36,37:37,51:51,46:46};
216
+      var routineBloodShowItem = {17:1,35:1,36:1,37:1,49:1,46:1,48:1};
217 217
       var references = [];
218 218
       for (const index in this.references) {
219 219
         if (this.references[index].id in routineBloodShowItem) {

+ 1 - 3
src/xt_pages/qcd/patientAnalysis/total.vue Прегледај датотеку

@@ -9,9 +9,7 @@
9 9
       <div class="cell clearfix">
10 10
         <el-form :inline="true" :model="listQuery" >
11 11
           <el-form-item label="">
12
-            <el-input v-model="listQuery.search" placeholder="姓名/透析号"></el-input>
13
-          </el-form-item>
14
-          <el-form-item>
12
+            <el-input v-model="listQuery.search" placeholder="姓名/透析号" style="width: 377px;"></el-input>
15 13
             <el-button type="primary" @click="onSearch" icon="el-icon-search">搜索</el-button>
16 14
           </el-form-item>
17 15
         </el-form>

+ 1 - 1
src/xt_pages/workforce/components/tableData.vue Прегледај датотеку

@@ -141,7 +141,7 @@
141 141
             </div>
142 142
           </div>
143 143
         </div>
144
-        <el-table ref="singleTable" :data="patients" border height="250" highlight-current-row @current-change="handleCurrentChange" :header-cell-style="{ backgroundColor: 'rgb(236, 245, 255)'}" >
144
+        <el-table ref="singleTable" :data="patients" border  highlight-current-row @current-change="handleCurrentChange" :header-cell-style="{ backgroundColor: 'rgb(236, 245, 255)'}" >
145 145
           <el-table-column type="index" label="序号" width="89" align="center"> </el-table-column>
146 146
           <el-table-column property="dialysis_no" label="透析号" min-width="110" align="center" ></el-table-column>
147 147
           <el-table-column property="name" label="姓名" min-width="110" align="center" ></el-table-column>

+ 5 - 1
src/xt_pages/workforce/schedule_print.vue Прегледај датотеку

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
 <div class="main-contain">
3 3
     <div class="position">
4
-       <bread-crumb></bread-crumb>
4
+       <bread-crumb :crumbs="crumbs"></bread-crumb>
5 5
         <el-row style="float:right;">
6 6
             <el-col :span="24">
7 7
                 <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
@@ -88,6 +88,10 @@ export default {
88 88
     name: "SchedulePrint",
89 89
     data() {
90 90
         return {
91
+            crumbs: [
92
+                { path: false, name: '排班管理' },
93
+                { path: false, name: '排班打印' },
94
+            ],
91 95
             td_1_width: "8%",
92 96
             td_2_width: "8%",
93 97
             td_3_width: "64%",