|
@@ -1,34 +1,47 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="main-contain new-main-contain">
|
3
|
3
|
<div class="position">
|
4
|
|
-<!-- <bread-crumb :crumbs='crumbs'></bread-crumb>-->
|
5
|
|
- <bread-crumb :crumbs='crumbs'></bread-crumb>
|
|
4
|
+ <!-- <bread-crumb :crumbs='crumbs'></bread-crumb>-->
|
|
5
|
+ <bread-crumb :crumbs="crumbs"></bread-crumb>
|
6
|
6
|
</div>
|
7
|
|
- <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
|
|
7
|
+ <div
|
|
8
|
+ class="app-container"
|
|
9
|
+ style="display: flex; flex: 1; padding: 10px 20px 0px 20px"
|
|
10
|
+ >
|
8
|
11
|
<div class="mainLeft">
|
9
|
12
|
<div>
|
10
|
|
- <el-input
|
11
|
|
- size="small"
|
12
|
|
- style="width: 130px"
|
13
|
|
- v-model="keywords"
|
14
|
|
- class="filter-item"
|
15
|
|
- placeholder="请输入患者名称"
|
16
|
|
- />
|
17
|
|
- <el-button
|
18
|
|
- size="small"
|
19
|
|
- class="filter-item"
|
20
|
|
- type="primary"
|
21
|
|
- @click="searchAction"
|
22
|
|
- >搜索
|
23
|
|
- </el-button>
|
24
|
|
- <el-table :data="patientTableData" :height="tableHeight" border style="width: 100%;"
|
25
|
|
- :row-style="{ color: '#303133' }"
|
26
|
|
- :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
27
|
|
- highlight-current-row
|
28
|
|
- ref="singleTable"
|
29
|
|
- @current-change="handleCurrentChange"
|
30
|
|
- >
|
31
|
|
- <el-table-column align="center" prop="name" label="姓名" wdith='89'>
|
|
13
|
+ <div style="margin:10px 0;display: flex;justify-content: space-between;">
|
|
14
|
+ <el-input
|
|
15
|
+ size="small"
|
|
16
|
+ style="width: 130px"
|
|
17
|
+ v-model="keywords"
|
|
18
|
+ class="filter-item"
|
|
19
|
+ placeholder="请输入患者名称"
|
|
20
|
+ />
|
|
21
|
+ <el-button
|
|
22
|
+ size="small"
|
|
23
|
+ class="filter-item"
|
|
24
|
+ type="primary"
|
|
25
|
+ @click="searchAction"
|
|
26
|
+ >搜索
|
|
27
|
+ </el-button>
|
|
28
|
+ </div>
|
|
29
|
+
|
|
30
|
+ <el-table
|
|
31
|
+ :data="patientTableData"
|
|
32
|
+ :height="tableHeight"
|
|
33
|
+ border
|
|
34
|
+ style="width: 100%"
|
|
35
|
+ :row-style="{ color: '#303133' }"
|
|
36
|
+ :header-cell-style="{
|
|
37
|
+ backgroundColor: 'rgb(245, 247, 250)',
|
|
38
|
+ color: '#606266',
|
|
39
|
+ }"
|
|
40
|
+ highlight-current-row
|
|
41
|
+ ref="singleTable"
|
|
42
|
+ @current-change="handleCurrentChange"
|
|
43
|
+ >
|
|
44
|
+ <el-table-column align="center" prop="name" label="姓名" wdith="89">
|
32
|
45
|
<template slot-scope="scope">{{ scope.row.name }}</template>
|
33
|
46
|
</el-table-column>
|
34
|
47
|
</el-table>
|
|
@@ -39,21 +52,27 @@
|
39
|
52
|
<el-tab-pane label="明细" name="明细"></el-tab-pane>
|
40
|
53
|
<el-tab-pane label="汇总" name="汇总"></el-tab-pane>
|
41
|
54
|
</el-tabs>
|
42
|
|
- <detail-statistics v-if="titleType == '明细'" :patient_id="patient_id" ref="child"></detail-statistics>
|
43
|
|
- <gather-statistics v-if="titleType == '汇总'" :patient_id="patient_id" ref="childOne"></gather-statistics>
|
|
55
|
+ <detail-statistics
|
|
56
|
+ v-if="titleType == '明细'"
|
|
57
|
+ :patient_id="patient_id"
|
|
58
|
+ ref="child"
|
|
59
|
+ ></detail-statistics>
|
|
60
|
+ <gather-statistics
|
|
61
|
+ v-if="titleType == '汇总'"
|
|
62
|
+ :patient_id="patient_id"
|
|
63
|
+ ref="childOne"
|
|
64
|
+ ></gather-statistics>
|
44
|
65
|
</div>
|
45
|
66
|
</div>
|
46
|
67
|
</div>
|
47
|
68
|
</template>
|
48
|
69
|
|
49
|
70
|
<script>
|
50
|
|
-import {
|
51
|
|
- GetDetailPatients,
|
52
|
|
-} from '@/api/his/his_tools'
|
53
|
|
-import BreadCrumb from '@/xt_pages/components/bread-crumb'
|
|
71
|
+import { GetDetailPatients } from "@/api/his/his_tools";
|
|
72
|
+import BreadCrumb from "@/xt_pages/components/bread-crumb";
|
54
|
73
|
|
55
|
|
-import DetailStatistics from './components/detailStatistics'
|
56
|
|
-import GatherStatistics from './components/gatherStatistics'
|
|
74
|
+import DetailStatistics from "./components/detailStatistics";
|
|
75
|
+import GatherStatistics from "./components/gatherStatistics";
|
57
|
76
|
export default {
|
58
|
77
|
components: {
|
59
|
78
|
GatherStatistics,
|
|
@@ -61,58 +80,79 @@ export default {
|
61
|
80
|
BreadCrumb,
|
62
|
81
|
},
|
63
|
82
|
data() {
|
64
|
|
-
|
65
|
83
|
return {
|
66
|
|
- patientTableData:[],
|
|
84
|
+ patientTableData: [],
|
67
|
85
|
tableHeight: 400,
|
68
|
86
|
crumbs: [
|
69
|
|
- { path: false, name: 'His工具' },
|
70
|
|
- { path: false, name: '明细汇总统计' }
|
|
87
|
+ { path: false, name: "His工具" },
|
|
88
|
+ { path: false, name: "明细汇总统计" },
|
71
|
89
|
],
|
72
|
|
- titleType: '明细',
|
73
|
|
- patient_id:0,
|
74
|
|
- keywords:"",
|
|
90
|
+ titleType: "明细",
|
|
91
|
+ patient_id: 0,
|
|
92
|
+ keywords: "",
|
|
93
|
+ };
|
|
94
|
+ },
|
|
95
|
+ //判断列表页是否刷新
|
|
96
|
+ beforeRouteEnter(to, from, next) {
|
|
97
|
+ console.log(from, "beforeRouteEnter");
|
|
98
|
+ if (from.path == "/hisTool/detailPrint") {
|
|
99
|
+ next((vm) => {
|
|
100
|
+ vm.patient_id = vm.$store.getters.pagedata.list.patient_id;
|
|
101
|
+ // setTimeout(() => {
|
|
102
|
+ // vm.getHisOrderList();
|
|
103
|
+ // },300)
|
|
104
|
+
|
|
105
|
+ });
|
|
106
|
+ } else {
|
|
107
|
+ next((vm) => {
|
|
108
|
+ vm.getPatientList()
|
|
109
|
+ // setTimeout(() => {
|
|
110
|
+ // vm.getHisOrderList();
|
|
111
|
+ // },300)
|
|
112
|
+
|
|
113
|
+ });
|
75
|
114
|
}
|
76
|
115
|
},
|
|
116
|
+
|
77
|
117
|
methods: {
|
78
|
|
- getPatientList(){
|
79
|
|
- var params = {
|
80
|
|
- keyword:this.keywords,
|
81
|
|
- }
|
82
|
|
- GetDetailPatients(params).then(response => {
|
|
118
|
+ getPatientList() {
|
|
119
|
+ var params = {
|
|
120
|
+ keyword: this.keywords,
|
|
121
|
+ };
|
|
122
|
+ GetDetailPatients(params).then((response) => {
|
83
|
123
|
if (response.data.state == 0) {
|
84
|
|
- this.$message.error(response.data.msg)
|
85
|
|
- return false
|
|
124
|
+ this.$message.error(response.data.msg);
|
|
125
|
+ return false;
|
86
|
126
|
} else {
|
87
|
|
- this.patientTableData = response.data.data.patient
|
88
|
|
- this.patient_id = this.patientTableData[0].id
|
89
|
|
- this.$refs.singleTable.setCurrentRow(this.patientTableData[0])
|
|
127
|
+ this.patientTableData = response.data.data.patient;
|
|
128
|
+ this.patient_id = this.patientTableData[0].id;
|
|
129
|
+
|
|
130
|
+ this.$refs.singleTable.setCurrentRow(this.patientTableData[0]);
|
90
|
131
|
}
|
91
|
|
- })
|
|
132
|
+ });
|
92
|
133
|
},
|
93
|
|
- searchAction(){
|
94
|
|
- this.getPatientList()
|
|
134
|
+ searchAction() {
|
|
135
|
+ this.getPatientList();
|
95
|
136
|
},
|
96
|
|
- handleCurrentChange(row){
|
97
|
|
- this.patient_id = 0
|
98
|
|
- this.patient_id = row.id
|
|
137
|
+ handleCurrentChange(row,index) {
|
|
138
|
+ this.patient_id = row.id;
|
99
|
139
|
// this.$refs.child.getHisSummaryDetailList()
|
100
|
140
|
// this.$refs.childOne.getGatherDetailList()
|
|
141
|
+ // this.$store.commit("SET_PAGEDATA",{
|
|
142
|
+ // patient_id: row.id,
|
|
143
|
+ // })
|
|
144
|
+ console.log(index,'po')
|
101
|
145
|
},
|
102
|
|
-
|
103
|
146
|
},
|
104
|
147
|
created() {
|
105
|
|
- const tableHeight = document.body.clientHeight - 290
|
106
|
|
- this.tableHeight = tableHeight
|
107
|
|
- this.getPatientList()
|
108
|
|
-
|
|
148
|
+ const tableHeight = document.body.clientHeight - 290;
|
|
149
|
+ this.tableHeight = tableHeight;
|
|
150
|
+ this.getPatientList();
|
109
|
151
|
},
|
110
|
152
|
|
111
|
|
- mounted() {
|
112
|
|
-
|
113
|
|
- },
|
114
|
|
- watch: {}
|
115
|
|
-}
|
|
153
|
+ mounted() {},
|
|
154
|
+ watch: {},
|
|
155
|
+};
|
116
|
156
|
</script>
|
117
|
157
|
|
118
|
158
|
<style lang="scss" scoped>
|
|
@@ -138,10 +178,9 @@ export default {
|
138
|
178
|
display: flex;
|
139
|
179
|
flex-direction: column;
|
140
|
180
|
|
141
|
|
-.el-radio {
|
142
|
|
- margin-right: 5px;
|
143
|
|
-}
|
144
|
|
-
|
|
181
|
+ .el-radio {
|
|
182
|
+ margin-right: 5px;
|
|
183
|
+ }
|
145
|
184
|
}
|
146
|
185
|
.mainRight {
|
147
|
186
|
margin-left: 10px;
|
|
@@ -151,12 +190,11 @@ export default {
|
151
|
190
|
flex-direction: column;
|
152
|
191
|
overflow-y: auto;
|
153
|
192
|
|
154
|
|
-.cellSpan {
|
155
|
|
- min-width: 80px;
|
156
|
|
- display: inline-block;
|
157
|
|
- margin-right: 10px;
|
158
|
|
-}
|
159
|
|
-
|
|
193
|
+ .cellSpan {
|
|
194
|
+ min-width: 80px;
|
|
195
|
+ display: inline-block;
|
|
196
|
+ margin-right: 10px;
|
|
197
|
+ }
|
160
|
198
|
}
|
161
|
199
|
.mainCenter {
|
162
|
200
|
display: flex;
|
|
@@ -169,16 +207,15 @@ export default {
|
169
|
207
|
flex-direction: column;
|
170
|
208
|
position: relative;
|
171
|
209
|
|
172
|
|
-.el-form-item {
|
173
|
|
- width: 32%;
|
174
|
|
- margin-right: 1%;
|
175
|
|
- float: left;
|
176
|
|
-}
|
177
|
|
-
|
178
|
|
-.el-form-item__label {
|
179
|
|
- text-align: left;
|
180
|
|
-}
|
|
210
|
+ .el-form-item {
|
|
211
|
+ width: 32%;
|
|
212
|
+ margin-right: 1%;
|
|
213
|
+ float: left;
|
|
214
|
+ }
|
181
|
215
|
|
|
216
|
+ .el-form-item__label {
|
|
217
|
+ text-align: left;
|
|
218
|
+ }
|
182
|
219
|
}
|
183
|
220
|
.backColor {
|
184
|
221
|
background: #f6f8f9;
|
|
@@ -192,21 +229,19 @@ export default {
|
192
|
229
|
overflow-y: auto;
|
193
|
230
|
margin-bottom: 60px;
|
194
|
231
|
|
195
|
|
-.el-tabs__item {
|
196
|
|
- padding: 0 10px;
|
197
|
|
-}
|
198
|
|
-
|
|
232
|
+ .el-tabs__item {
|
|
233
|
+ padding: 0 10px;
|
|
234
|
+ }
|
199
|
235
|
}
|
200
|
236
|
.preTabs {
|
201
|
237
|
height: 100%;
|
202
|
238
|
display: flex;
|
203
|
239
|
flex-direction: column;
|
204
|
240
|
|
205
|
|
-.el-tabs__content {
|
206
|
|
- flex: 1;
|
207
|
|
- overflow-y: auto;
|
208
|
|
-}
|
209
|
|
-
|
|
241
|
+ .el-tabs__content {
|
|
242
|
+ flex: 1;
|
|
243
|
+ overflow-y: auto;
|
|
244
|
+ }
|
210
|
245
|
}
|
211
|
246
|
|
212
|
247
|
.costBox {
|
|
@@ -240,25 +275,24 @@ export default {
|
240
|
275
|
border: 1px solid #d2d2d2;
|
241
|
276
|
box-sizing: border-box;
|
242
|
277
|
|
243
|
|
-p {
|
244
|
|
- width: 50%;
|
245
|
|
- height: 40px;
|
246
|
|
- line-height: 40px;
|
247
|
|
- text-align: center;
|
248
|
|
- background: #eee;
|
249
|
|
- float: left;
|
250
|
|
-}
|
251
|
|
-
|
252
|
|
-> p:last-child {
|
253
|
|
- border-left: 1px solid #d2d2d2;
|
254
|
|
- float: right;
|
255
|
|
-}
|
256
|
|
-
|
257
|
|
-.activeP {
|
258
|
|
- background: #409EFF;
|
259
|
|
- color: #fff;
|
260
|
|
-}
|
261
|
|
-
|
|
278
|
+ p {
|
|
279
|
+ width: 50%;
|
|
280
|
+ height: 40px;
|
|
281
|
+ line-height: 40px;
|
|
282
|
+ text-align: center;
|
|
283
|
+ background: #eee;
|
|
284
|
+ float: left;
|
|
285
|
+ }
|
|
286
|
+
|
|
287
|
+ > p:last-child {
|
|
288
|
+ border-left: 1px solid #d2d2d2;
|
|
289
|
+ float: right;
|
|
290
|
+ }
|
|
291
|
+
|
|
292
|
+ .activeP {
|
|
293
|
+ background: #409eff;
|
|
294
|
+ color: #fff;
|
|
295
|
+ }
|
262
|
296
|
}
|
263
|
297
|
.comfirmBox {
|
264
|
298
|
width: 100%;
|
|
@@ -298,68 +332,83 @@ p {
|
298
|
332
|
|
299
|
333
|
<style lang="scss">
|
300
|
334
|
.centerLeft {
|
301
|
|
-
|
302
|
|
-.el-form-item__label {
|
303
|
|
- text-align: left;
|
304
|
|
-}
|
305
|
|
-
|
|
335
|
+ .el-form-item__label {
|
|
336
|
+ text-align: left;
|
|
337
|
+ }
|
306
|
338
|
}
|
307
|
339
|
.tabsBox {
|
308
|
|
-
|
309
|
|
-.el-tabs__item {
|
310
|
|
- padding: 0 10px;
|
311
|
|
-}
|
312
|
|
-
|
313
|
|
-.el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) {
|
314
|
|
- padding: 0 10px;
|
315
|
|
-}
|
316
|
|
-
|
317
|
|
-.el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child {
|
318
|
|
- padding: 0 10px;
|
319
|
|
-}
|
320
|
|
-
|
321
|
|
-.el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable {
|
322
|
|
- padding: 0 10px;
|
323
|
|
-}
|
324
|
|
-
|
|
340
|
+ .el-tabs__item {
|
|
341
|
+ padding: 0 10px;
|
|
342
|
+ }
|
|
343
|
+
|
|
344
|
+ .el-tabs--bottom
|
|
345
|
+ .el-tabs--left
|
|
346
|
+ > .el-tabs__header
|
|
347
|
+ .el-tabs__item:nth-child(2),
|
|
348
|
+ .el-tabs--bottom
|
|
349
|
+ .el-tabs--right
|
|
350
|
+ > .el-tabs__header
|
|
351
|
+ .el-tabs__item:nth-child(2),
|
|
352
|
+ .el-tabs--bottom.el-tabs--border-card
|
|
353
|
+ > .el-tabs__header
|
|
354
|
+ .el-tabs__item:nth-child(2),
|
|
355
|
+ .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2),
|
|
356
|
+ .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2),
|
|
357
|
+ .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2),
|
|
358
|
+ .el-tabs--top.el-tabs--border-card
|
|
359
|
+ > .el-tabs__header
|
|
360
|
+ .el-tabs__item:nth-child(2),
|
|
361
|
+ .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) {
|
|
362
|
+ padding: 0 10px;
|
|
363
|
+ }
|
|
364
|
+
|
|
365
|
+ .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child,
|
|
366
|
+ .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child,
|
|
367
|
+ .el-tabs--bottom.el-tabs--border-card
|
|
368
|
+ > .el-tabs__header
|
|
369
|
+ .el-tabs__item:last-child,
|
|
370
|
+ .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child,
|
|
371
|
+ .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child,
|
|
372
|
+ .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child,
|
|
373
|
+ .el-tabs--top.el-tabs--border-card
|
|
374
|
+ > .el-tabs__header
|
|
375
|
+ .el-tabs__item:last-child,
|
|
376
|
+ .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child {
|
|
377
|
+ padding: 0 10px;
|
|
378
|
+ }
|
|
379
|
+
|
|
380
|
+ .el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable {
|
|
381
|
+ padding: 0 10px;
|
|
382
|
+ }
|
325
|
383
|
}
|
326
|
384
|
.centerRight {
|
|
385
|
+ .el-tabs__nav-scroll {
|
|
386
|
+ display: flex;
|
|
387
|
+ }
|
327
|
388
|
|
328
|
|
-.el-tabs__nav-scroll {
|
329
|
|
- display: flex;
|
330
|
|
-}
|
331
|
|
-
|
332
|
|
-.el-tabs__nav {
|
333
|
|
- margin: 0 auto;
|
334
|
|
-}
|
335
|
|
-
|
336
|
|
-.el-table th .cell, .el-table td .cell {
|
337
|
|
- padding: 0 2px;
|
338
|
|
-}
|
|
389
|
+ .el-tabs__nav {
|
|
390
|
+ margin: 0 auto;
|
|
391
|
+ }
|
339
|
392
|
|
|
393
|
+ .el-table th .cell,
|
|
394
|
+ .el-table td .cell {
|
|
395
|
+ padding: 0 2px;
|
|
396
|
+ }
|
340
|
397
|
}
|
341
|
398
|
.preTabs {
|
342
|
|
-
|
343
|
|
-.el-tabs__content {
|
344
|
|
-
|
345
|
|
-}
|
346
|
|
-
|
|
399
|
+ .el-tabs__content {
|
|
400
|
+ }
|
347
|
401
|
}
|
348
|
402
|
.rightTabs {
|
349
|
403
|
height: 100%;
|
350
|
404
|
|
351
|
|
-
|
352
|
|
-.el-tabs__content {
|
353
|
|
-
|
354
|
|
-}
|
355
|
|
-
|
|
405
|
+ .el-tabs__content {
|
|
406
|
+ }
|
356
|
407
|
}
|
357
|
408
|
.centerDialog {
|
358
|
|
-
|
359
|
|
-.el-dialog__body {
|
360
|
|
- max-height: calc(100vh - 100px) !important;
|
361
|
|
- padding: 0 20px;
|
362
|
|
-}
|
363
|
|
-
|
|
409
|
+ .el-dialog__body {
|
|
410
|
+ max-height: calc(100vh - 100px) !important;
|
|
411
|
+ padding: 0 20px;
|
|
412
|
+ }
|
364
|
413
|
}
|
365
|
414
|
</style>
|