See999 4 years ago
parent
commit
eeeed86b43

+ 3 - 3
src/xt_pages/qcd/basicInformationAnalysis.vue View File

@@ -6,7 +6,7 @@
6 6
     <div class="app-container">
7 7
       <div class="cell clearfix">
8 8
         <label class="title">
9
-          <span class="name">转归状态</span> :
9
+          <span class="name">日期查询</span> :
10 10
         </label>
11 11
         <div class="time">
12 12
           <ul class>
@@ -297,7 +297,7 @@ export default {
297 297
       stateType: 0,
298 298
       month: [
299 299
         { value: 0, label: "本月", state: 0 },
300
-        { value: 1, label: "近三月", state: 1 },
300
+        { value: 1, label: "近三月", state: 1 },
301 301
         { value: 2, label: "近半年", state: 2 },
302 302
         { value: 3, label: "近一年", state: 3 },
303 303
         { value:4,label:"自定义",state:4}
@@ -641,7 +641,7 @@ export default {
641 641
   flex-wrap: wrap;
642 642
   .infoOne {
643 643
     margin-right: 30px;
644
-    margin-top: 30px;
644
+    margin-top: 20px;
645 645
     .titleBox {
646 646
       display: flex;
647 647
       align-items: center;

+ 7 - 2
src/xt_pages/qcd/checkStatistical.vue View File

@@ -3,7 +3,7 @@
3 3
     <div class="position">
4 4
       <bread-crumb :crumbs="crumbs"></bread-crumb>
5 5
     </div>
6
-    <div class="app-container">
6
+    <div class="app-container checkStatistical">
7 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>
@@ -14,7 +14,7 @@
14 14
         </el-col>
15 15
       </el-row>
16 16
       <div class="configTable">
17
-        <el-table :data="checkList" border style="width: 100%">
17
+        <el-table :data="checkList" border style="width: 100%" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
18 18
           <el-table-column prop="date" label="检验检查项">
19 19
               <template slot-scope="scope">{{ scope.row.project_name }}</template>
20 20
           </el-table-column>
@@ -300,6 +300,11 @@ export default {
300 300
     text-align: center;
301 301
   }
302 302
 }
303
+.checkStatistical{
304
+  .el-tabs{
305
+    margin-bottom: 0 !important;
306
+  }
307
+}
303 308
 </style>
304 309
 
305 310
  <style rel="stylesheet/scss" lang="scss" scoped>

+ 10 - 1
src/xt_pages/qcd/indicatorControlAnalysis/analysis.vue View File

@@ -55,7 +55,7 @@ export default {
55 55
       ],
56 56
       way: [
57 57
         { value: 0, label: "科室", state: 0 },
58
-        { value: 1, label: "个人", state: 1 }
58
+        { value: 1, label: "患者", state: 1 }
59 59
       ],
60 60
       wayType: 0
61 61
     };
@@ -67,3 +67,12 @@ export default {
67 67
   }
68 68
 };
69 69
 </script>
70
+
71
+<style lang="scss">
72
+.page_analysis{
73
+  .el-tabs{
74
+    margin-bottom:0 !important;
75
+  }
76
+}
77
+
78
+</style>

+ 3 - 3
src/xt_pages/qcd/indicatorControlAnalysis/components/office.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
   <div class="page_office">
3 3
     <div class="cell clearfix">
4
-      <el-select v-model="query.project_id" placeholder="请选择" style="width:120px;margin-right:20px"
4
+      <el-select v-model="query.project_id" placeholder="请选择" style="width:120px;margin-right:10px"
5 5
                  @change="changeProject">
6 6
         <el-option
7 7
           v-for="item in project_columns"
@@ -14,7 +14,7 @@
14 14
       <el-select
15 15
         v-model="query.item_id"
16 16
         placeholder="请选择"
17
-        style="width:120px;margin-right:20px"
17
+        style="width:120px;margin-right:10px"
18 18
         @change="changeItem"
19 19
       >
20 20
         <el-option
@@ -25,7 +25,7 @@
25 25
         ></el-option>
26 26
       </el-select>
27 27
 
28
-      <el-select v-model="query.range_value" placeholder="请选择" style="width:120px;margin-right:20px"
28
+      <el-select v-model="query.range_value" placeholder="请选择" style="width:120px;margin-right:10px"
29 29
                  @change="changeRangeValue">
30 30
         <el-option
31 31
           v-for="item in range_value_columns"

+ 16 - 11
src/xt_pages/qcd/officesControlAnalysis/project.vue View File

@@ -9,7 +9,7 @@
9 9
         <el-tab-pane label="按项目分组" name="second"></el-tab-pane>
10 10
       </el-tabs>
11 11
       <div class="cell clearfix">
12
-        <el-select v-model="lapseto" placeholder="请选择" style="width:120px;margin-right:20px" @change="changeOptions">
12
+        <el-select v-model="lapseto" placeholder="请选择" style="width:120px;margin-right:10px" @change="changeOptions">
13 13
           <el-option
14 14
             v-for="item in options"
15 15
             :key="item.value"
@@ -17,7 +17,7 @@
17 17
             :value="item.value"
18 18
           ></el-option>
19 19
         </el-select>
20
-        <el-select v-model="type" placeholder="请选择" @change="chooseType" style="margin-right:20px">
20
+        <el-select v-model="type" placeholder="请选择" @change="chooseType" style="margin-right:10px">
21 21
           <el-option
22 22
             v-for="item in options1"
23 23
             :key="item.value"
@@ -25,7 +25,7 @@
25 25
             :value="item.value"
26 26
           ></el-option>
27 27
         </el-select>
28
-        <el-select v-model="mode_type" placeholder="请选择" style="width:120px;margin-right:20px" @change="handleModeType">
28
+        <el-select v-model="mode_type" placeholder="请选择" style="width:120px;margin-right:0px" @change="handleModeType">
29 29
           <el-option
30 30
             v-for="item in normdata"
31 31
             :key="item.inspection_minor"
@@ -38,6 +38,10 @@
38 38
       <div class="cell clearfix">
39 39
         <p class="chartTitle">统计图</p>
40 40
       </div>
41
+      <div class="cell clearfix">
42
+        <p class="point"></p>
43
+        <p class="pointTitle">达标率</p>
44
+      </div>
41 45
       <div>
42 46
         <line-chart :options="chart"></line-chart>
43 47
       </div>
@@ -111,14 +115,14 @@ export default {
111 115
       mode_type:"",
112 116
       range_type:"",
113 117
       chart: {
114
-        title: {
115
-          text: "ECharts 入门示例"
116
-        },
118
+        // title: {
119
+        //   text: "ECharts 入门示例"
120
+        // },
117 121
         tooltip: {},
118
-        legend: {
119
-          data: ["次数"],
120
-          left: 0
121
-        },
122
+        // legend: {
123
+        //   data: ["次数"],
124
+        //   left: 0
125
+        // },
122 126
         xAxis: {
123 127
           data: ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
124 128
         },
@@ -190,7 +194,7 @@ export default {
190 194
               emphasis: {
191 195
                 shadowBlur: 10,
192 196
                 shadowOffsetX: 0,
193
-                shadowColor: "rgba(0, 0, 0, 0.5)"
197
+                shadowColor: "rgba(0, 0, 0, 0.2)"
194 198
               }
195 199
             }
196 200
           }
@@ -763,5 +767,6 @@ export default {
763 767
 }
764 768
 .newDisplay {
765 769
   flex-wrap: wrap;
770
+  padding-left: 20px;
766 771
 }
767 772
 </style>

+ 16 - 11
src/xt_pages/qcd/officesControlAnalysis/time.vue View File

@@ -9,7 +9,7 @@
9 9
         <el-tab-pane label="按项目分组" name="second"></el-tab-pane>
10 10
       </el-tabs>
11 11
       <div class="cell clearfix">
12
-        <el-select v-model="lapseto" placeholder="请选择" style="width:120px;margin-right:20px" @change="changeLapseto">
12
+        <el-select v-model="lapseto" placeholder="请选择" style="width:120px;margin-right:10px" @change="changeLapseto">
13 13
           <el-option
14 14
             v-for="item in options"
15 15
             :key="item.value"
@@ -17,7 +17,7 @@
17 17
             :value="item.value"
18 18
           ></el-option>
19 19
         </el-select>
20
-        <el-select v-model="type" placeholder="请选择" @change="chooseType" style="margin-right:20px">
20
+        <el-select v-model="type" placeholder="请选择" @change="chooseType" style="margin-right:10px">
21 21
           <el-option
22 22
             v-for="item in options1"
23 23
             :key="item.value"
@@ -83,6 +83,10 @@
83 83
       <div class="cell clearfix">
84 84
         <p class="chartTitle">统计图</p>
85 85
       </div>
86
+      <div class="cell clearfix">
87
+        <p class="point"></p>
88
+        <p class="pointTitle">达标率</p>
89
+      </div>
86 90
       <div>
87 91
         <line-chart :options="chart"></line-chart>
88 92
       </div>
@@ -196,14 +200,14 @@ export default {
196 200
       ],
197 201
       monthType: 0,
198 202
       chart: {
199
-        title: {
200
-          text: "ECharts 入门示例"
201
-        },
203
+        // title: {
204
+        //   text: "ECharts 入门示例"
205
+        // },
202 206
         tooltip: {},
203
-        legend: {
204
-          data: ["次数"],
205
-          left: 0
206
-        },
207
+        // legend: {
208
+        //   data: ["达标率"],
209
+        //   left: 0
210
+        // },
207 211
         xAxis: {
208 212
           data: []
209 213
         },
@@ -215,7 +219,7 @@ export default {
215 219
         },
216 220
         series: [
217 221
           {
218
-            name: "次数",
222
+            name: "达标率",
219 223
             type: "bar",
220 224
             data: [],
221 225
             barWidth: 30,
@@ -265,7 +269,7 @@ export default {
265 269
               emphasis: {
266 270
                 shadowBlur: 10,
267 271
                 shadowOffsetX: 0,
268
-                shadowColor: "rgba(0, 0, 0, 0.5)"
272
+                shadowColor: "rgba(0, 0, 0, 0.2)"
269 273
               }
270 274
             }
271 275
           }
@@ -721,5 +725,6 @@ export default {
721 725
 }
722 726
 .newDisplay {
723 727
   flex-wrap: wrap;
728
+  padding-left: 20px;
724 729
 }
725 730
 </style>

+ 54 - 10
src/xt_pages/qcd/patientComplianceDetails.vue View File

@@ -11,15 +11,34 @@
11 11
           </el-form>
12 12
         </div>
13 13
         <el-container>
14
-          <div style="width:150px">
14
+          <div style="width:160px">
15
+            <el-form :inline="true" :model="listQuery">
16
+              <el-form-item label>
17
+                <el-autocomplete
18
+                  class="checkSearch"
19
+                  popper-class="my-autocomplete"
20
+                  v-model.trim="listQuery.search"
21
+                  :fetch-suggestions="querySearchAsync"
22
+                  :trigger-on-focus="false"
23
+                  placeholder="病人透析号/姓名"
24
+                  @select="handleSelect"
25
+                >
26
+                  <i class="el-icon-search el-input__icon" slot="suffix"></i>
27
+                  <template slot-scope="{ item }">
28
+                    <div class="name">{{ item.name }}</div>
29
+                  </template>
30
+                </el-autocomplete>
31
+
32
+              </el-form-item>
33
+            </el-form>
15 34
             <div class="tableTitle">患者列表</div>
16
-            <el-table :data="patientsData" border style="width: 100%;" height="500"  highlight-current-row @current-change="handleChange">
17
-              <el-table-column prop="name" label="透析号" width="80">
35
+            <el-table :data="patientsData" border style="width: 100%;" height="500"  highlight-current-row @current-change="handleChange" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
36
+              <el-table-column prop="name" label="透析号" width="70">
18 37
                  <template slot-scope="scope">
19 38
                     {{scope.row.dialysis_no}}
20 39
                  </template>
21 40
               </el-table-column>
22
-              <el-table-column prop="date" label="透析号" width="70">
41
+              <el-table-column prop="date" label="姓名" width="90">
23 42
                  <template slot-scope="scope">
24 43
                     {{scope.row.name }}
25 44
                  </template>
@@ -89,6 +108,10 @@
89 108
               </div>
90 109
             </div>
91 110
             <div class="tableTitle">指标趋势</div>
111
+            <div class="cell clearfix">
112
+              <p class="point"></p>
113
+              <p class="pointTitle">达标率</p>
114
+            </div>
92 115
             <div>
93 116
               <line-chart :options="chart"></line-chart>
94 117
             </div>
@@ -131,7 +154,7 @@ export default {
131 154
       item_id:0,
132 155
       month: [
133 156
         { value: 0, label: "本月", state: 0 },
134
-        { value: 1, label: "近三月", state: 1 },
157
+        { value: 1, label: "近三月", state: 1 },
135 158
         { value: 2, label: "近半年", state: 2 },
136 159
         { value: 3, label: "近一年", state: 3 }
137 160
       ],
@@ -147,17 +170,17 @@ export default {
147 170
       },
148 171
       patientid:0,
149 172
       monthType: 0,
150
-      arr: ["钙", "磷", "钙萨达撒所多", "磷", "钙", "磷", "钙", "磷"],
173
+      arr: [],
151 174
       quality: 0,
152 175
       chart: {
153 176
         title: {
154 177
           text: "ECharts 入门示例"
155 178
         },
156 179
         tooltip: {},
157
-        legend: {
158
-          data: ["次数"],
159
-          left: 0
160
-        },
180
+        // legend: {
181
+        //   data: ["次数"],
182
+        //   left: 0
183
+        // },
161 184
         xAxis: {
162 185
           data: []
163 186
         },
@@ -212,6 +235,9 @@ export default {
212 235
                     { offset: 1, color: colorList[index][1] }
213 236
                   ]);
214 237
                 },
238
+                lineStyle:{ 
239
+                  color:'#409eff' //改变折线颜色
240
+                }, 
215 241
                 barBorderRadius: [5, 5, 0, 0] //柱状角成椭圆形
216 242
               },
217 243
 
@@ -461,6 +487,20 @@ export default {
461 487
 </script>
462 488
 
463 489
 <style lang="scss" scoped>
490
+.point {
491
+  width: 13px;
492
+  height: 13px;
493
+  background: linear-gradient(
494
+    0deg,
495
+    rgba(169, 224, 243, 1),
496
+    rgba(159, 189, 252, 1)
497
+  );
498
+  border-radius: 7px;
499
+  margin-right: 8px;
500
+}
501
+.pointTitle {
502
+  font-size: 13px;
503
+}
464 504
 .containerRight {
465 505
   padding-left: 10px;
466 506
 }
@@ -475,6 +515,7 @@ export default {
475 515
   display: flex;
476 516
   flex-wrap: nowrap;
477 517
   min-width: 1800px;
518
+  padding-bottom: 10px;
478 519
   .qualityOne {
479 520
     width: 4.5rem;
480 521
     height: 4.5rem;
@@ -536,5 +577,8 @@ export default {
536 577
   ::-webkit-scrollbar{
537 578
     height: 15px !important;
538 579
   }
580
+  .el-form--inline .el-form-item{
581
+    margin-right:0;
582
+  }
539 583
 }
540 584
 </style>

+ 35 - 12
src/xt_pages/qcd/patientControlAnalysis.vue View File

@@ -14,7 +14,7 @@
14 14
                 v-model.trim="listQuery.search"
15 15
                 :fetch-suggestions="querySearchAsync"
16 16
                 :trigger-on-focus="false"
17
-                placeholder="输入病人透析号/姓名"
17
+                placeholder="病人透析号/姓名"
18 18
                 @select="handleSelect"
19 19
               >
20 20
                 <i class="el-icon-search el-input__icon" slot="suffix"></i>
@@ -67,6 +67,10 @@
67 67
         <div class="cell clearfix">
68 68
           <p class="chartTitle">统计图</p>
69 69
         </div>
70
+        <div class="cell clearfix">
71
+          <p class="point"></p>
72
+          <p class="pointTitle">指标正常范围值</p>
73
+        </div>
70 74
         <div>
71 75
           <line-chart :options="chart"></line-chart>
72 76
         </div>
@@ -110,7 +114,7 @@
110 114
         </el-table-column>
111 115
             <el-table-column fixed="right" label="操作" width="100">
112 116
               <template slot-scope="scope">
113
-                <el-button @click="handleClick(scope.row.patient_id,scope.row.inspect_date)" type="text" size="small">查看</el-button>
117
+                <el-button @click="handleClick(scope.row.patient_id,scope.row.inspect_date)" style="font-size:14px;" type="text" size="small">查看</el-button>
114 118
               </template>
115 119
             </el-table-column>
116 120
           </el-table>
@@ -184,16 +188,16 @@ export default {
184 188
         series: []
185 189
       },
186 190
       chart: {
187
-        title: {
188
-          text: "ECharts 入门示例"
189
-        },
191
+        // title: {
192
+        //   text: "ECharts 入门示例"
193
+        // },
190 194
         tooltip: {},
191
-        legend: {
192
-          data: ["次数"],
193
-          left: 0
194
-        },
195
+        // legend: {
196
+        //   data: ["次数"],
197
+        //   left: 0
198
+        // },
195 199
         xAxis: {
196
-          data: ["达标", "未达标"]
200
+          data: []
197 201
         },
198 202
         yAxis: {
199 203
           axisLabel: {
@@ -205,7 +209,7 @@ export default {
205 209
           {
206 210
             name: "次数",
207 211
             type: "bar",
208
-            data: ["78.57", "50"],
212
+            data: [],
209 213
             barWidth: 30,
210 214
             label: {
211 215
               normal: {
@@ -256,7 +260,7 @@ export default {
256 260
               emphasis: {
257 261
                 shadowBlur: 10,
258 262
                 shadowOffsetX: 0,
259
-                shadowColor: "rgba(0, 0, 0, 0.5)"
263
+                shadowColor: "rgba(0, 0, 0, 0.2)"
260 264
               }
261 265
             }
262 266
           }
@@ -819,6 +823,25 @@ export default {
819 823
   .pointTitle {
820 824
     font-size: 13px;
821 825
   }
826
+  .chartTitle {
827
+    font-size: 16px;
828
+    font-weight: bold;
829
+    color: #000000;
830
+  }
831
+  .point {
832
+    width: 13px;
833
+    height: 13px;
834
+    background: linear-gradient(
835
+      0deg,
836
+      rgba(169, 224, 243, 1),
837
+      rgba(159, 189, 252, 1)
838
+    );
839
+    border-radius: 7px;
840
+    margin-right: 8px;
841
+  }
842
+  .pointTitle {
843
+    font-size: 13px;
844
+  }
822 845
 }
823 846
 
824 847
 </style>

+ 7 - 2
src/xt_pages/qcd/statisticalConfiguration.vue View File

@@ -3,7 +3,7 @@
3 3
     <div class="position">
4 4
       <bread-crumb :crumbs="crumbs"></bread-crumb>
5 5
     </div>
6
-    <div class="app-container">
6
+    <div class="app-container statisticalConfig">
7 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>
@@ -14,7 +14,7 @@
14 14
         </el-col>
15 15
       </el-row>
16 16
       <div class="configTable">
17
-        <el-table :data="configuraData" border style="width: 100%">
17
+        <el-table :data="configuraData" border style="width: 100%" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
18 18
           <el-table-column prop="date" label="检验检查大项" width="180">
19 19
               <template slot-scope="scope">{{ scope.row.project_name }}</template>
20 20
           </el-table-column>
@@ -507,6 +507,11 @@ export default {
507 507
     margin-left:0 !important;
508 508
   }
509 509
 }
510
+.statisticalConfig{
511
+  .el-tabs{
512
+    margin-bottom: 0 !important;
513
+  }
514
+}
510 515
 </style>
511 516
 
512 517
  <style rel="stylesheet/scss" lang="scss" scoped>

+ 5 - 4
src/xt_pages/qcd/treatmentControlAnalysis/components/CheckAll.vue View File

@@ -13,6 +13,7 @@
13 13
              :trigger-on-focus="false"
14 14
              placeholder="输入病人透析号/姓名"
15 15
              @select="handleSelect"
16
+             style="width:160px;"
16 17
               >
17 18
              <i class="el-icon-search el-input__icon" slot="suffix"></i>
18 19
                <template slot-scope="{ item }">
@@ -21,7 +22,7 @@
21 22
           </el-autocomplete>
22 23
         </el-form-item>
23 24
       </el-form>
24
-      <label class="title">
25
+      <label class="title" style="text-align:left;">
25 26
         <span class="name">日期查询</span> :
26 27
       </label>
27 28
       <el-date-picker
@@ -51,16 +52,16 @@
51 52
       ></el-date-picker>
52 53
     </div>
53 54
     <el-container>
54
-      <div style="width:150px">
55
+      <div style="width:160px">
55 56
         <div class="tableTitle">患者列表</div>
56 57
         <el-table :data="patientsData" border style="width: 100%;" height="500" :row-style="{ color: '#303133' }"
57 58
         :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
58 59
          highlight-current-row
59 60
          @current-change="handleChange">
60
-           <el-table-column prop="dialysis_no" label="透析号" width="80">
61
+           <el-table-column prop="dialysis_no" label="透析号" width="70">
61 62
             <template slot-scope="scope">{{scope.row.dialysis_no}}</template>
62 63
           </el-table-column>
63
-          <el-table-column prop="name" label="姓名" width="80">
64
+          <el-table-column prop="name" label="姓名" width="90">
64 65
             <template slot-scope="scope">{{ scope.row.name }}</template>
65 66
           </el-table-column>
66 67
         </el-table>

+ 5 - 4
src/xt_pages/qcd/treatmentControlAnalysis/components/CheckPersonal.vue View File

@@ -13,6 +13,7 @@
13 13
              :trigger-on-focus="false"
14 14
              placeholder="输入病人透析号/姓名"
15 15
              @select="handleSelect"
16
+              style="width:160px"
16 17
               >
17 18
              <i class="el-icon-search el-input__icon" slot="suffix"></i>
18 19
                <template slot-scope="{ item }">
@@ -21,7 +22,7 @@
21 22
           </el-autocomplete>
22 23
         </el-form-item>
23 24
       </el-form>
24
-      <label class="title">
25
+      <label class="title" style="text-align:left;">
25 26
         <span class="name">日期查询</span> :
26 27
       </label>
27 28
       <el-date-picker
@@ -53,7 +54,7 @@
53 54
       ></el-date-picker>
54 55
     </div>
55 56
     <el-container>
56
-      <div style="width:150px">
57
+      <div style="width:160px">
57 58
         <div class="tableTitle">患者列表</div>
58 59
         <el-table :data="patientsData" border style="width: 100%;" 
59 60
           height="500" :row-style="{ color: '#303133' }" 
@@ -62,10 +63,10 @@
62 63
            ref="singleTable"
63 64
           @current-change="handleChange"
64 65
           >
65
-           <el-table-column prop="dialysis_no" label="透析号" width="80">
66
+           <el-table-column prop="dialysis_no" label="透析号" width="70">
66 67
             <template slot-scope="scope">{{scope.row.dialysis_no}}</template>
67 68
           </el-table-column>
68
-          <el-table-column prop="name" label="姓名" width="80">
69
+          <el-table-column prop="name" label="姓名" width="90">
69 70
             <template slot-scope="scope">{{ scope.row.name }}</template>
70 71
           </el-table-column>
71 72
         </el-table>

+ 27 - 9
src/xt_pages/qcd/treatmentControlAnalysis/components/TimeAll.vue View File

@@ -46,6 +46,10 @@
46 46
       ></el-date-picker>
47 47
     </div>
48 48
     <div class="tableTitle">统计图</div>
49
+    <div class="cell clearfix" style="margin:0;">
50
+        <p class="point"></p>
51
+        <p class="pointTitle">次</p>
52
+      </div>
49 53
     <div>
50 54
       <line-chart :options="chart"></line-chart>
51 55
     </div>
@@ -124,10 +128,10 @@ export default {
124 128
       ],
125 129
       chart: {
126 130
         tooltip: {},
127
-        legend: {
128
-          data: ["次"],
129
-          left: 0
130
-        },
131
+        // legend: {
132
+        //   data: ["次"],
133
+        //   left: 0
134
+        // },
131 135
         xAxis: {
132 136
           data: []
133 137
         },
@@ -185,11 +189,11 @@ export default {
185 189
               },
186 190
 
187 191
               //鼠标悬停时:
188
-              // emphasis: {
189
-              //   shadowBlur: 10,
190
-              //   shadowOffsetX: 0,
191
-              //   shadowColor: "rgba(0, 0, 0, 0.5)"
192
-              // }
192
+              emphasis: {
193
+                shadowBlur: 10,
194
+                shadowOffsetX: 0,
195
+                shadowColor: "rgba(0, 0, 0, 0.2)"
196
+              }
193 197
             }
194 198
           }
195 199
         ]
@@ -405,6 +409,20 @@ export default {
405 409
   font-weight: bold;
406 410
   margin-bottom: 10px;
407 411
 }
412
+.point {
413
+  width: 13px;
414
+  height: 13px;
415
+  background: linear-gradient(
416
+    0deg,
417
+    rgba(169, 224, 243, 1),
418
+    rgba(159, 189, 252, 1)
419
+  );
420
+  border-radius: 7px;
421
+  margin-right: 8px;
422
+}
423
+.pointTitle {
424
+  font-size: 13px;
425
+}
408 426
 </style>
409 427
 
410 428
 <style lang="scss">

+ 6 - 5
src/xt_pages/qcd/treatmentControlAnalysis/components/TimePersonal.vue View File

@@ -11,8 +11,9 @@
11 11
              v-model.trim="listQuery.search"
12 12
              :fetch-suggestions="querySearchAsync"
13 13
              :trigger-on-focus="false"
14
-             placeholder="输入病人透析号/姓名"
14
+             placeholder="病人透析号/姓名"
15 15
              @select="handleSelect"
16
+              style="width:160px;"
16 17
               >
17 18
              <i class="el-icon-search el-input__icon" slot="suffix"></i>
18 19
                <template slot-scope="{ item }">
@@ -21,7 +22,7 @@
21 22
           </el-autocomplete>
22 23
         </el-form-item>
23 24
       </el-form>
24
-      <label class="title">
25
+      <label class="title" style="text-align:left;">
25 26
         <span class="name">日期查询</span> :
26 27
       </label>
27 28
       <el-date-picker
@@ -53,16 +54,16 @@
53 54
       ></el-date-picker>
54 55
     </div>
55 56
     <el-container>
56
-      <div style="width:150px">
57
+      <div style="width:160px">
57 58
         <div class="tableTitle">患者列表</div>
58 59
         <el-table :data="patientsData" border style="width: 100%;" height="500" :row-style="{ color: '#303133' }"
59 60
          :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
60 61
           highlight-current-row
61 62
           @current-change="handleChange">
62
-          <el-table-column prop="dialysis_no" label="透析号" width="80">
63
+          <el-table-column prop="dialysis_no" label="透析号" width="70">
63 64
             <template slot-scope="scope">{{scope.row.dialysis_no}}</template>
64 65
           </el-table-column>
65
-          <el-table-column prop="name" label="姓名" width="80">
66
+          <el-table-column prop="name" label="姓名" width="90">
66 67
             <template slot-scope="scope">{{ scope.row.name }}</template>
67 68
           </el-table-column>
68 69
         </el-table>