|
@@ -0,0 +1,403 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="main-contain">
|
|
3
|
+ <div class="position">
|
|
4
|
+ <bread-crumb :crumbs="crumbs"></bread-crumb>
|
|
5
|
+
|
|
6
|
+ </div>
|
|
7
|
+ <div class="app-container">
|
|
8
|
+ <div class="filter-container">
|
|
9
|
+ <el-form :inline="true" :model="listQuery">
|
|
10
|
+ <el-form-item label>
|
|
11
|
+
|
|
12
|
+ <!-- <el-autocomplete
|
|
13
|
+ class="checkSearch"
|
|
14
|
+ popper-class="my-autocomplete"
|
|
15
|
+ v-model.trim="listQuery.search"
|
|
16
|
+ :fetch-suggestions="querySearchAsync"
|
|
17
|
+ :trigger-on-focus="false"
|
|
18
|
+ placeholder="病人透析号/姓名"
|
|
19
|
+ @select="handleSelect"
|
|
20
|
+ style="width:160px;"
|
|
21
|
+ >
|
|
22
|
+ <i class="el-icon-search el-input__icon" slot="suffix"></i>
|
|
23
|
+ <template slot-scope="{ item }">
|
|
24
|
+ <div class="name">{{ item.name }}</div>
|
|
25
|
+ </template>
|
|
26
|
+ </el-autocomplete> -->
|
|
27
|
+ <el-input v-model="listQuery.search" style="width: 200px;" placeholder="请输入患者姓名或透析号"></el-input>
|
|
28
|
+ <el-button type="primary" size="small" @click="toSeach">搜索</el-button>
|
|
29
|
+ </el-form-item>
|
|
30
|
+ </el-form>
|
|
31
|
+
|
|
32
|
+ <label class="title" style="text-align:left;">
|
|
33
|
+ <span class="name">日期查询</span> :
|
|
34
|
+ </label>
|
|
35
|
+ <el-date-picker
|
|
36
|
+ v-model="listQuery.start_time"
|
|
37
|
+ prefix-icon="el-icon-date"
|
|
38
|
+ @change="changeTime"
|
|
39
|
+ :editable="false"
|
|
40
|
+ style="width: 196px;"
|
|
41
|
+ type="date"
|
|
42
|
+ placeholder="选择日期时间"
|
|
43
|
+ align="right"
|
|
44
|
+ format="yyyy-MM-dd"
|
|
45
|
+ value-format="yyyy-MM-dd"
|
|
46
|
+ ></el-date-picker>
|
|
47
|
+ <span class>-</span>
|
|
48
|
+ <el-date-picker
|
|
49
|
+ v-model="listQuery.end_time"
|
|
50
|
+ prefix-icon="el-icon-date"
|
|
51
|
+ @change="changeEndTime"
|
|
52
|
+ :editable="false"
|
|
53
|
+ style="width: 196px;"
|
|
54
|
+ type="date"
|
|
55
|
+ placeholder="选择日期时间"
|
|
56
|
+ align="right"
|
|
57
|
+ format="yyyy-MM-dd"
|
|
58
|
+ value-format="yyyy-MM-dd"
|
|
59
|
+ ></el-date-picker>
|
|
60
|
+
|
|
61
|
+ <el-container>
|
|
62
|
+ <div style="width:160px">
|
|
63
|
+ <div class="tableTitle" style="margin-bottom: 10px;">患者列表</div>
|
|
64
|
+ <el-table :data="patientsData" border style="width: 100%;" height="500" :row-style="{ color: '#303133' }"
|
|
65
|
+ :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
|
66
|
+ highlight-current-row
|
|
67
|
+ @current-change="handleChange"
|
|
68
|
+ ref="singleTable"
|
|
69
|
+ >
|
|
70
|
+ <el-table-column prop="dialysis_no" label="透析号" width="70">
|
|
71
|
+ <template slot-scope="scope">{{scope.row.dialysis_no}}</template>
|
|
72
|
+ </el-table-column>
|
|
73
|
+ <el-table-column prop="name" label="姓名" width="90">
|
|
74
|
+ <template slot-scope="scope">{{ scope.row.name }}</template>
|
|
75
|
+ </el-table-column>
|
|
76
|
+ </el-table>
|
|
77
|
+ </div>
|
|
78
|
+ <div style="padding-left:10px;flex:1">
|
|
79
|
+ <div class="tableTitle" style="margin-top: 10px;margin-bottom: 10px;">统计表</div>
|
|
80
|
+ <div>
|
|
81
|
+ <el-button type="primary" @click="exportList" style="margin-bottom: 10px;">导出</el-button>
|
|
82
|
+ <el-table
|
|
83
|
+ :data="DialysisData" style="width: 100%" border :row-style="{ color: '#303133' }"
|
|
84
|
+ :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
|
85
|
+ highlight-current-row
|
|
86
|
+
|
|
87
|
+ >
|
|
88
|
+ <el-table-column label="医嘱名称" min-width="200" align="center">
|
|
89
|
+ <template slot-scope="scope">
|
|
90
|
+ {{ scope.row.advice_name }}
|
|
91
|
+ </template>
|
|
92
|
+ </el-table-column>
|
|
93
|
+ <!-- <el-table-column label="生产厂家" width="140">
|
|
94
|
+ <template slot-scope="scope">
|
|
95
|
+
|
|
96
|
+ </template>
|
|
97
|
+ </el-table-column> -->
|
|
98
|
+ <el-table-column label="规格" min-width="200" align="center">
|
|
99
|
+ <template slot-scope="scope">
|
|
100
|
+ {{ scope.row.specification_name }}
|
|
101
|
+ </template>
|
|
102
|
+ </el-table-column>
|
|
103
|
+ <el-table-column label="数量" min-width="200" align="center">
|
|
104
|
+ <template slot-scope="scope">
|
|
105
|
+ {{ getCount(scope.row.child) }}
|
|
106
|
+ </template>
|
|
107
|
+
|
|
108
|
+ </el-table-column>
|
|
109
|
+
|
|
110
|
+ </el-table>
|
|
111
|
+
|
|
112
|
+ <el-pagination
|
|
113
|
+ align="right"
|
|
114
|
+ @size-change="handleSizeChange"
|
|
115
|
+ @current-change="handleCurrentChange"
|
|
116
|
+ :current-page="listQuery.page"
|
|
117
|
+ :page-sizes="[20, 40, 60, 80, 100,200,300,500,1000]"
|
|
118
|
+ :page-size="10"
|
|
119
|
+ background
|
|
120
|
+ style="margin-top:20px;"
|
|
121
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
122
|
+ :total="total"
|
|
123
|
+ ></el-pagination>
|
|
124
|
+ </div>
|
|
125
|
+ </div>
|
|
126
|
+ </el-container>
|
|
127
|
+ </div>
|
|
128
|
+ </div>
|
|
129
|
+ </div>
|
|
130
|
+</template>
|
|
131
|
+<script>
|
|
132
|
+ import {getPatientsByName,getDocAdviceByPatientId} from '@/api/advice'
|
|
133
|
+ import BreadCrumb from "@/xt_pages/components/bread-crumb";
|
|
134
|
+ export default {
|
|
135
|
+ components: {
|
|
136
|
+ BreadCrumb
|
|
137
|
+ },
|
|
138
|
+ data(){
|
|
139
|
+
|
|
140
|
+ return{
|
|
141
|
+ crumbs: [
|
|
142
|
+ { path: false, name: "透析管理" },
|
|
143
|
+ { path: false, name: "药品统计" }
|
|
144
|
+ ],
|
|
145
|
+ listQuery:{
|
|
146
|
+ search:"",
|
|
147
|
+ start_time:"",
|
|
148
|
+ end_time:"",
|
|
149
|
+ page:1,
|
|
150
|
+ limit:10,
|
|
151
|
+ },
|
|
152
|
+ patientsData:[],
|
|
153
|
+ DialysisData:[],
|
|
154
|
+ total:0,
|
|
155
|
+ patient_id:0
|
|
156
|
+ }
|
|
157
|
+
|
|
158
|
+ },
|
|
159
|
+ created(){
|
|
160
|
+ var nowDate = new Date();
|
|
161
|
+ var nowYear = nowDate.getFullYear();
|
|
162
|
+ var nowMonth = nowDate.getMonth() + 1;
|
|
163
|
+ var nowDay = nowDate.getDate();
|
|
164
|
+ this.listQuery.end_time = nowYear +"-" +(nowMonth < 10 ? "0" + nowMonth : nowMonth) +"-" +(nowDay < 10 ? "0" + nowDay : nowDay);
|
|
165
|
+ nowDate.setMonth(nowDate.getMonth() - 1);
|
|
166
|
+ nowYear = nowDate.getFullYear();
|
|
167
|
+ nowMonth = nowDate.getMonth() + 1;
|
|
168
|
+ nowDay = nowDate.getDate();
|
|
169
|
+ this.listQuery.start_time = nowYear + "-" + (nowMonth < 10 ? "0" + nowMonth : nowMonth) +"-" +(nowDay < 10 ? "0" + nowDay : nowDay);
|
|
170
|
+
|
|
171
|
+ //获取该机构下的所有患者
|
|
172
|
+ this.getPatientsByName()
|
|
173
|
+ },
|
|
174
|
+ methods:{
|
|
175
|
+ getPatientsByName(){
|
|
176
|
+ var keyword = this.listQuery.search
|
|
177
|
+ var params = {
|
|
178
|
+ keyword:keyword,
|
|
179
|
+ }
|
|
180
|
+ getPatientsByName(params).then(response=>{
|
|
181
|
+ if(response.data.state == 1){
|
|
182
|
+ var patients = response.data.data.patients
|
|
183
|
+
|
|
184
|
+ this.patientsData = patients
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+ this.$nextTick(()=>{
|
|
188
|
+ // 别忘了标签上定义ref 这里的 myTable就说获取的标签上的ref命的名
|
|
189
|
+ this.$refs.singleTable.setCurrentRow(this.patientsData[0])
|
|
190
|
+ })
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+ }
|
|
194
|
+ })
|
|
195
|
+ },
|
|
196
|
+ handleSelect(){
|
|
197
|
+
|
|
198
|
+ },
|
|
199
|
+ changeTime(){
|
|
200
|
+ this.handleChange(this.patient_id)
|
|
201
|
+ },
|
|
202
|
+ changeEndTime(){
|
|
203
|
+ this.handleChange(this.patient_id)
|
|
204
|
+ },
|
|
205
|
+ handleSizeChange(){
|
|
206
|
+
|
|
207
|
+ },
|
|
208
|
+ handleCurrentChange(){
|
|
209
|
+
|
|
210
|
+ },
|
|
211
|
+ exportList(){
|
|
212
|
+ var params = {
|
|
213
|
+ patient_id:0,
|
|
214
|
+ start_time:this.listQuery.start_time,
|
|
215
|
+ end_time:this.listQuery.end_time,
|
|
216
|
+ limit:this.listQuery.limit,
|
|
217
|
+ page:this.listQuery.page,
|
|
218
|
+ }
|
|
219
|
+ console.log("paramswowowoow",params)
|
|
220
|
+
|
|
221
|
+ getDocAdviceByPatientId(params).then(response=>{
|
|
222
|
+ if(response.data.state == 1){
|
|
223
|
+ var list = response.data.data.list
|
|
224
|
+ var tableData = []
|
|
225
|
+ if(list!=null && list.length>0){
|
|
226
|
+ let dataInfo = {}
|
|
227
|
+ list.forEach((item, index) => {
|
|
228
|
+ let { patient_id } = item
|
|
229
|
+ if (!dataInfo[patient_id]) {
|
|
230
|
+ dataInfo[patient_id] = {
|
|
231
|
+ patient_id:item.patient_id,
|
|
232
|
+ child: [],
|
|
233
|
+ }
|
|
234
|
+ }
|
|
235
|
+ })
|
|
236
|
+ let arr = Object.values(dataInfo)
|
|
237
|
+
|
|
238
|
+ if(arr!=null && arr.length>0){
|
|
239
|
+ for(let i=0;i<list.length;i++){
|
|
240
|
+ for(let j=0;j<arr.length;j++){
|
|
241
|
+ if(list[i].patient_id == arr[j].patient_id){
|
|
242
|
+ arr[j].child.push(list[i])
|
|
243
|
+ }
|
|
244
|
+ }
|
|
245
|
+ }
|
|
246
|
+ }
|
|
247
|
+
|
|
248
|
+ console.log("arrwowoowowo",arr)
|
|
249
|
+
|
|
250
|
+ if(arr!=null && arr.length>0){
|
|
251
|
+ for(let i=0;i<arr.length;i++){
|
|
252
|
+ let dataInfo = {}
|
|
253
|
+ arr[i].child.forEach((item, index) => {
|
|
254
|
+ let { advice_name} = item
|
|
255
|
+ if (!dataInfo[advice_name]) {
|
|
256
|
+ dataInfo[advice_name] = {
|
|
257
|
+ advice_name:item.advice_name,
|
|
258
|
+ childOne: [],
|
|
259
|
+ count:0,
|
|
260
|
+ specification_name:item.advice_desc +item.drug_spec_unit,
|
|
261
|
+ patient_id:item.patient_id,
|
|
262
|
+ }
|
|
263
|
+ }
|
|
264
|
+ })
|
|
265
|
+ let newArr = Object.values(dataInfo)
|
|
266
|
+ console.log("newArrwoowow",newArr)
|
|
267
|
+ if(newArr!=null && newArr.length>0){
|
|
268
|
+ for(let z=0;z<arr[i].child.length;z++){
|
|
269
|
+ for(let y=0;y<newArr.length;y++){
|
|
270
|
+ if(arr[i].child[z].advice_name == newArr[y].advice_name){
|
|
271
|
+ newArr[y].childOne.push(arr[i].child[z])
|
|
272
|
+ }
|
|
273
|
+
|
|
274
|
+ }
|
|
275
|
+ }
|
|
276
|
+ }
|
|
277
|
+ console.log("newArrwoowow",newArr)
|
|
278
|
+ tableData.push(...newArr)
|
|
279
|
+ }
|
|
280
|
+ }
|
|
281
|
+ console.log("tableDatawpwwwoow",tableData)
|
|
282
|
+
|
|
283
|
+ for(let i=0;i<tableData.length;i++){
|
|
284
|
+ tableData[i].index = i+1
|
|
285
|
+ tableData[i].count_name = this.getCount(tableData[i].childOne)
|
|
286
|
+ tableData[i].specification_name =tableData[i].specification_name
|
|
287
|
+ tableData[i].query_date = this.listQuery.start_time + "~" + this.listQuery.end_time
|
|
288
|
+ tableData[i].patient_name = this.getPatientName(tableData[i].patient_id)
|
|
289
|
+
|
|
290
|
+ }
|
|
291
|
+ import('@/vendor/Export2Excel').then(excel => {
|
|
292
|
+
|
|
293
|
+ const tHeader = ['序号','患者姓名','查询日期','药品名称','规格&单位','数量']
|
|
294
|
+ const filterVal = ['index','patient_name','query_date','advice_name','specification_name','count_name']
|
|
295
|
+
|
|
296
|
+ const data = this.formatJson(filterVal,tableData)
|
|
297
|
+
|
|
298
|
+ excel.export_json_to_excel({
|
|
299
|
+ header: tHeader,
|
|
300
|
+ data,
|
|
301
|
+ filename: '患者药品使用查询表'
|
|
302
|
+ })
|
|
303
|
+ })
|
|
304
|
+ }
|
|
305
|
+ }
|
|
306
|
+ })
|
|
307
|
+
|
|
308
|
+ },
|
|
309
|
+ formatJson(filterVal, jsonData) {
|
|
310
|
+ return jsonData.map(v => filterVal.map(j => v[j]))
|
|
311
|
+ },
|
|
312
|
+ getPatientName(id){
|
|
313
|
+ var patient_name = ""
|
|
314
|
+ for(let i=0;i<this.patientsData.length;i++){
|
|
315
|
+ if(id == this.patientsData[i].id){
|
|
316
|
+ patient_name = this.patientsData[i].name
|
|
317
|
+ }
|
|
318
|
+ }
|
|
319
|
+ return patient_name
|
|
320
|
+ },
|
|
321
|
+ handleChange(val){
|
|
322
|
+ console.log("valwoowowowwo",val)
|
|
323
|
+ this.patient_id =val.id
|
|
324
|
+ var params = {
|
|
325
|
+ patient_id:val.id,
|
|
326
|
+ start_time:this.listQuery.start_time,
|
|
327
|
+ end_time:this.listQuery.end_time,
|
|
328
|
+ limit:this.listQuery.limit,
|
|
329
|
+ page:this.listQuery.page,
|
|
330
|
+ }
|
|
331
|
+ console.log("paramswowowoow",params)
|
|
332
|
+ getDocAdviceByPatientId(params).then(response=>{
|
|
333
|
+ if(response.data.state == 1){
|
|
334
|
+ var list = response.data.data.list
|
|
335
|
+
|
|
336
|
+ if(list!=null && list.length>0){
|
|
337
|
+ let dataInfo = {}
|
|
338
|
+ list.forEach((item, index) => {
|
|
339
|
+ let { advice_name } = item
|
|
340
|
+ if (!dataInfo[advice_name]) {
|
|
341
|
+ dataInfo[advice_name] = {
|
|
342
|
+ advice_name:item.advice_name,
|
|
343
|
+ child: [],
|
|
344
|
+ count:0,
|
|
345
|
+ specification_name:item.advice_desc +item.drug_spec_unit,
|
|
346
|
+ patient_id:item.patient_id,
|
|
347
|
+ }
|
|
348
|
+ }
|
|
349
|
+ })
|
|
350
|
+ let arr = Object.values(dataInfo)
|
|
351
|
+
|
|
352
|
+ if(arr!=null && arr.length>0){
|
|
353
|
+ for(let i=0;i<list.length;i++){
|
|
354
|
+ for(let j=0;j<arr.length;j++){
|
|
355
|
+ if(list[i].advice_name == arr[j].advice_name){
|
|
356
|
+ arr[j].child.push(list[i])
|
|
357
|
+ }
|
|
358
|
+ }
|
|
359
|
+ }
|
|
360
|
+ }
|
|
361
|
+
|
|
362
|
+ this.DialysisData= []
|
|
363
|
+
|
|
364
|
+ this.DialysisData = arr
|
|
365
|
+
|
|
366
|
+ console.log("arrwoowowowowo",arr)
|
|
367
|
+ }
|
|
368
|
+
|
|
369
|
+ }
|
|
370
|
+ })
|
|
371
|
+ },
|
|
372
|
+ toSeach(){
|
|
373
|
+ this.getPatientsByName()
|
|
374
|
+ },
|
|
375
|
+ getCount(val){
|
|
376
|
+ var count =0
|
|
377
|
+ if(val!=null && val.length>0){
|
|
378
|
+ for(let i=0;i<val.length;i++){
|
|
379
|
+ count+=val[i].prescribing_number
|
|
380
|
+ }
|
|
381
|
+ }
|
|
382
|
+ return count
|
|
383
|
+
|
|
384
|
+ }
|
|
385
|
+ }
|
|
386
|
+ }
|
|
387
|
+</script>
|
|
388
|
+
|
|
389
|
+<style lang="scss" scoped>
|
|
390
|
+.tableTitle {
|
|
391
|
+ font-size: 16px;
|
|
392
|
+ color: #000;
|
|
393
|
+ font-weight: bold;
|
|
394
|
+ margin-bottom: 10px;
|
|
395
|
+}
|
|
396
|
+</style>
|
|
397
|
+<style lang="scss">
|
|
398
|
+.page_timePersonal {
|
|
399
|
+ .cell {
|
|
400
|
+ text-align: center;
|
|
401
|
+ }
|
|
402
|
+}
|
|
403
|
+</style>
|