|
@@ -0,0 +1,542 @@
|
|
1
|
+<template>
|
|
2
|
+ <div id="list-print" class="list-print">
|
|
3
|
+ <div >
|
|
4
|
+ <div class="listTitle">{{$store.getters.xt_user.org.org_name}}费用清单</div>
|
|
5
|
+ <div class="listInfo">
|
|
6
|
+ <div>医疗机构名称:{{$store.getters.xt_user.org.org_name}}</div>
|
|
7
|
+ </div>
|
|
8
|
+ <div class="listInfo">
|
|
9
|
+ <div>科别:</div>
|
|
10
|
+ <div>床号:</div>
|
|
11
|
+ <div>门诊号:</div>
|
|
12
|
+ <div>姓名:{{patient.name}}</div>
|
|
13
|
+ </div>
|
|
14
|
+ <div class="listInfo">
|
|
15
|
+ <div>预交款:</div>
|
|
16
|
+ <div>总费用:</div>
|
|
17
|
+ <div>门诊日期:</div>
|
|
18
|
+ </div>
|
|
19
|
+ <div class="listInfo">
|
|
20
|
+ <div>西药:</div>
|
|
21
|
+ <div>中成药:</div>
|
|
22
|
+ <div>中草药:</div>
|
|
23
|
+ </div>
|
|
24
|
+ <div class="listInfo">
|
|
25
|
+ <div>检查费:</div>
|
|
26
|
+ <div>输氧费:</div>
|
|
27
|
+ <div>手术费:</div>
|
|
28
|
+ </div>
|
|
29
|
+ <div class="listInfo">
|
|
30
|
+ <div>化验费:</div>
|
|
31
|
+ <div>输血费:</div>
|
|
32
|
+ <div>诊断费:</div>
|
|
33
|
+ </div>
|
|
34
|
+ <div class="listInfo">
|
|
35
|
+ <div>治疗费:</div>
|
|
36
|
+ <div>护理费:</div>
|
|
37
|
+ <div>床位费:</div>
|
|
38
|
+ </div>
|
|
39
|
+ <div class="listInfo">
|
|
40
|
+ <div>麻醉费:</div>
|
|
41
|
+ <div>材料费:</div>
|
|
42
|
+ <div>其他:</div>
|
|
43
|
+ </div>
|
|
44
|
+ <table class="listTable" border="1">
|
|
45
|
+ <tr>
|
|
46
|
+ <td style="width:19%" text-align="center">费用分类</td>
|
|
47
|
+ <td style="width:10%" text-align="center">项目名称</td>
|
|
48
|
+ <td style="width:31%" text-align="center">规格</td>
|
|
49
|
+ <td style="width:14%" text-align="center">单价</td>
|
|
50
|
+ <td style="width:10%" text-align="center">数量</td>
|
|
51
|
+ <td style="width:6%" text-align="center">金额</td>
|
|
52
|
+ <td style="width:10%" text-align="center">医保类型</td>
|
|
53
|
+ </tr>
|
|
54
|
+ <tr v-for="(item, index) in list" :key="index">
|
|
55
|
+ <td style="width:19%;text-align:center" >
|
|
56
|
+ {{ item.med_chrgitm_type }}
|
|
57
|
+ </td>
|
|
58
|
+ <td style="width:10%;text-align:center" >
|
|
59
|
+ <span>{{item.name}}</span>
|
|
60
|
+ </td>
|
|
61
|
+ <td style="width:31%;text-align:center" >
|
|
62
|
+ {{ item.spec }}
|
|
63
|
+ </td>
|
|
64
|
+ <td style="width:14%;text-align:center" >
|
|
65
|
+ {{item.price}}
|
|
66
|
+ </td>
|
|
67
|
+ <td style="width:10%;text-align:center" >
|
|
68
|
+ {{item.count }}{{item.unit }}
|
|
69
|
+ </td>
|
|
70
|
+ <td style="width:6%;text-align:center" >
|
|
71
|
+ <span v-if="item.is_total == 1">{{item.total}}</span>
|
|
72
|
+ <span v-if="item.is_total == 2">{{(item.price * item.count).toFixed(2) }}</span>
|
|
73
|
+ </td>
|
|
74
|
+ <td style="width:10%;text-align:center" >
|
|
75
|
+ <span v-if="item.chrgitm_lv== '01'">甲类</span>
|
|
76
|
+ <span v-if="item.chrgitm_lv== '02'">乙类</span>
|
|
77
|
+ <span v-if="item.chrgitm_lv== '03'">自费</span>
|
|
78
|
+ </td>
|
|
79
|
+ </tr>
|
|
80
|
+ </table>
|
|
81
|
+ </div>
|
|
82
|
+ </div>
|
|
83
|
+</template>
|
|
84
|
+
|
|
85
|
+<script>
|
|
86
|
+ import { uParseTime } from '@/utils/tools'
|
|
87
|
+ import { getGatherDetailList } from '@/api/his/his_tools'
|
|
88
|
+ export default {
|
|
89
|
+ data(){
|
|
90
|
+ return{
|
|
91
|
+ patient:{},
|
|
92
|
+ tableData:[],
|
|
93
|
+ list:[],
|
|
94
|
+ order:[],
|
|
95
|
+ }
|
|
96
|
+ },
|
|
97
|
+ methods:{
|
|
98
|
+ getNowTime: function () {
|
|
99
|
+ let dateTime;
|
|
100
|
+ let yy = new Date().getFullYear();
|
|
101
|
+ let mm = new Date().getMonth() + 1;
|
|
102
|
+ let dd = new Date().getDate();
|
|
103
|
+ let hh = new Date().getHours();
|
|
104
|
+ let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes()
|
|
105
|
+ :
|
|
106
|
+ new Date().getMinutes();
|
|
107
|
+ let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds()
|
|
108
|
+ :
|
|
109
|
+ new Date().getSeconds();
|
|
110
|
+ dateTime = yy + '-' + mm + '-' + dd + ' ' + hh + ':' + mf + ':' + ss;
|
|
111
|
+ return dateTime
|
|
112
|
+ },
|
|
113
|
+ getTimes(time) {
|
|
114
|
+ return uParseTime(time, '{y}-{m}-{d}')
|
|
115
|
+ },
|
|
116
|
+ getGatherDetailList() {
|
|
117
|
+ let start_time = this.$route.query.start_time
|
|
118
|
+ let end_time = this.$route.query.end_time
|
|
119
|
+ let params = {
|
|
120
|
+ patient_id:this.$route.query.patient_id,
|
|
121
|
+ start_time: start_time,
|
|
122
|
+ end_time: end_time,
|
|
123
|
+ type: this.$route.query.type,
|
|
124
|
+ keyword: this.$route.query.keyword,
|
|
125
|
+ }
|
|
126
|
+ getGatherDetailList(params).then(response=>{
|
|
127
|
+ if (response.data.state == 0) {
|
|
128
|
+ this.$message.error(response.data.msg)
|
|
129
|
+ return false
|
|
130
|
+ } else {
|
|
131
|
+ this.order = response.data.data.order
|
|
132
|
+
|
|
133
|
+ this.patient = response.data.data.patient
|
|
134
|
+ this.admin = response.data.data.admin_info
|
|
135
|
+ this.his_hospital = response.data.data.his_hospital
|
|
136
|
+ var order_info = response.data.data.order_info
|
|
137
|
+ console.log("order_info2332332232332232323",order_info)
|
|
138
|
+ if(this.$store.getters.xt_user.org_id == 10215 || this.$store.getters.xt_user.org_id == 0){
|
|
139
|
+ //获取所有项目类型进行去重
|
|
140
|
+ let med_chrgitm_types = []
|
|
141
|
+ for (let i = 0; i < order_info.length; i++) {
|
|
142
|
+ med_chrgitm_types.push(order_info[i].med_chrgitm_type)
|
|
143
|
+ }
|
|
144
|
+ const obj = {}
|
|
145
|
+ med_chrgitm_types = med_chrgitm_types.reduce((cur, next) => {
|
|
146
|
+ obj[next] ? '' : obj[next] = true && cur.push(next)
|
|
147
|
+ return cur
|
|
148
|
+ }, []) // 设置cur默认类型为数组,并且初始值为空的数组
|
|
149
|
+
|
|
150
|
+ let tempOrderInfo = []
|
|
151
|
+
|
|
152
|
+ for (let i = 0; i < med_chrgitm_types.length; i++) {
|
|
153
|
+ let obj = {
|
|
154
|
+ total: 0,
|
|
155
|
+ details: [],
|
|
156
|
+ is_total:0,
|
|
157
|
+ }
|
|
158
|
+ let tempDetails = []
|
|
159
|
+ for (let b = 0; b < order_info.length; b++) {
|
|
160
|
+ if (med_chrgitm_types[i] == order_info[b].med_chrgitm_type) {
|
|
161
|
+ tempDetails.push(order_info[b])
|
|
162
|
+ }
|
|
163
|
+ }
|
|
164
|
+ obj.details = this.setNewData(tempDetails)
|
|
165
|
+
|
|
166
|
+ this.list = this.list.concat(obj.details)
|
|
167
|
+ for(let i=0;i<this.list.length;i++){
|
|
168
|
+ this.list[i].index = i
|
|
169
|
+ }
|
|
170
|
+ }
|
|
171
|
+ let newobj = {}
|
|
172
|
+ newobj['total'] = this.order.medfee_sumamt
|
|
173
|
+ newobj['is_total'] = 1
|
|
174
|
+
|
|
175
|
+ this.list.push(newobj)
|
|
176
|
+ }else{
|
|
177
|
+ //获取所有项目类型进行去重
|
|
178
|
+ let med_chrgitm_types = []
|
|
179
|
+ for (let i = 0; i < order_info.length; i++) {
|
|
180
|
+ med_chrgitm_types.push(order_info[i].med_chrgitm_type)
|
|
181
|
+ }
|
|
182
|
+
|
|
183
|
+ const obj = {}
|
|
184
|
+ med_chrgitm_types = med_chrgitm_types.reduce((cur, next) => {
|
|
185
|
+ obj[next] ? '' : obj[next] = true && cur.push(next)
|
|
186
|
+ return cur
|
|
187
|
+ }, []) // 设置cur默认类型为数组,并且初始值为空的数组
|
|
188
|
+ let tempOrderInfo = []
|
|
189
|
+ for (let i = 0; i < med_chrgitm_types.length; i++) {
|
|
190
|
+ let obj = {
|
|
191
|
+ total: 0,
|
|
192
|
+ details: []
|
|
193
|
+ }
|
|
194
|
+ let tempDetails = []
|
|
195
|
+ for (let b = 0; b < order_info.length; b++) {
|
|
196
|
+ if (med_chrgitm_types[i] == order_info[b].med_chrgitm_type) {
|
|
197
|
+ tempDetails.push(order_info[b])
|
|
198
|
+ }
|
|
199
|
+ }
|
|
200
|
+
|
|
201
|
+ obj.details = this.setNewData(tempDetails)
|
|
202
|
+
|
|
203
|
+ obj.total = this.getTotal(obj.details)
|
|
204
|
+ obj.details.push({
|
|
205
|
+ total: obj.total,
|
|
206
|
+ is_total: 1,
|
|
207
|
+ })
|
|
208
|
+
|
|
209
|
+ this.list = this.list.concat(obj.details)
|
|
210
|
+ console.log("oh2323232323233223232323233",this.list)
|
|
211
|
+ for(let i=0;i<this.list.length;i++){
|
|
212
|
+ this.list[i].index = i+1
|
|
213
|
+ }
|
|
214
|
+
|
|
215
|
+ }
|
|
216
|
+ }
|
|
217
|
+ }
|
|
218
|
+ })
|
|
219
|
+ },
|
|
220
|
+ getAdviceName(id){
|
|
221
|
+ var drug_name = ""
|
|
222
|
+ for(let i= 0;i<this.tableData.length;i++){
|
|
223
|
+ if(id == this.tableData[i].advice_id){
|
|
224
|
+ drug_name = this.tableData[i].advice.advice_name
|
|
225
|
+ }
|
|
226
|
+ }
|
|
227
|
+ return drug_name
|
|
228
|
+ },
|
|
229
|
+ getProjectName(id){
|
|
230
|
+ var project_name = ""
|
|
231
|
+ for(let i=0;i<this.tableData.length;i++){
|
|
232
|
+ if(id == this.tableData[i].project_id){
|
|
233
|
+ project_name = this.tableData[i].project.project.project_name
|
|
234
|
+ }
|
|
235
|
+ }
|
|
236
|
+ return project_name
|
|
237
|
+ },
|
|
238
|
+ setNewData(details) {
|
|
239
|
+ let drug_ids = []
|
|
240
|
+ let project_ids = []
|
|
241
|
+
|
|
242
|
+ for (let i = 0; i < details.length; i++) {
|
|
243
|
+ if (details[i].advice && details[i].advice.id > 0 && details[i].advice.prescription && details[i].advice.prescription.type == 1) { //药品
|
|
244
|
+ let obj = {
|
|
245
|
+ id: details[i].advice.drug_id,
|
|
246
|
+ price: details[i].advice.price,
|
|
247
|
+ record_date:details[i].advice.advice_date
|
|
248
|
+ }
|
|
249
|
+ drug_ids.push(obj)
|
|
250
|
+ } else if (details[i].project && details[i].project.id > 0 && details[i].project.prescription && details[i].project.prescription.type == 2) { //项目
|
|
251
|
+ let obj = {
|
|
252
|
+ id: details[i].project.project_id,
|
|
253
|
+ price: details[i].project.price,
|
|
254
|
+ record_date:details[i].advice.record_date
|
|
255
|
+ }
|
|
256
|
+ project_ids.push(obj)
|
|
257
|
+
|
|
258
|
+ }
|
|
259
|
+
|
|
260
|
+ }
|
|
261
|
+
|
|
262
|
+ let new_drug_ids = this.unique(drug_ids)
|
|
263
|
+ let new_project_ids = this.unique(project_ids)
|
|
264
|
+
|
|
265
|
+ let list = []
|
|
266
|
+ if (new_drug_ids.length > 0 && new_project_ids.length == 0) {
|
|
267
|
+ for (let i = 0; i < new_drug_ids.length; i++) {
|
|
268
|
+ let obj = {}
|
|
269
|
+ let count = 0
|
|
270
|
+ for (let a = 0; a < details.length; a++) {
|
|
271
|
+ if (new_drug_ids[i].id == details[a].advice.drug_id && new_drug_ids[i].price == details[a].advice.price) {
|
|
272
|
+ obj['name'] = details[a].advice.advice_name
|
|
273
|
+ obj['spec'] = details[a].advice.drug.dose + details[a].advice.drug.dose_unit+"*" + details[a].advice.drug.min_number + details[a].advice.drug.min_unit+"/"+ details[a].advice.drug.max_unit
|
|
274
|
+ obj['unit'] = details[a].advice.drug.min_unit
|
|
275
|
+ obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
|
|
276
|
+ obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
|
|
277
|
+ obj['price'] = parseFloat(details[a].pric)
|
|
278
|
+ obj['is_total'] = 2
|
|
279
|
+ obj['record_date'] = details[a].advice.record_date
|
|
280
|
+ obj['chrgitm_lv'] = details[a].chrgitm_lv
|
|
281
|
+ count = count + details[a].cnt
|
|
282
|
+ }
|
|
283
|
+ }
|
|
284
|
+ obj['count'] = count
|
|
285
|
+ list.push(obj)
|
|
286
|
+
|
|
287
|
+ }
|
|
288
|
+ }
|
|
289
|
+ if (new_drug_ids.length == 0 && new_project_ids.length > 0) {
|
|
290
|
+ for (let i = 0; i < new_project_ids.length; i++) {
|
|
291
|
+ let obj = {}
|
|
292
|
+ let count = 0
|
|
293
|
+ for (let a = 0; a < details.length; a++) {
|
|
294
|
+ if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
|
|
295
|
+ if( details[a].project.type == 2){
|
|
296
|
+ obj['name'] = details[a].project.project.project_name
|
|
297
|
+ obj['spec'] = ''
|
|
298
|
+ obj['unit'] = details[a].project.project.unit
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+ }else if(details[a].project.type == 3){
|
|
302
|
+ obj['name'] = details[a].project.good_info.good_name
|
|
303
|
+ obj['spec'] = ''
|
|
304
|
+ obj['unit'] = details[a].project.good_info.packing_unit
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+ }
|
|
308
|
+ obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
|
|
309
|
+ obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
|
|
310
|
+ obj['price'] = parseFloat(details[a].pric)
|
|
311
|
+ obj['is_total'] = 2
|
|
312
|
+ obj['chrgitm_lv'] = details[a].chrgitm_lv
|
|
313
|
+
|
|
314
|
+ count = count + details[a].cnt
|
|
315
|
+ }
|
|
316
|
+ }
|
|
317
|
+ obj['count'] = count
|
|
318
|
+ list.push(obj)
|
|
319
|
+
|
|
320
|
+ }
|
|
321
|
+ }
|
|
322
|
+
|
|
323
|
+ if (new_drug_ids.length > 0 && new_project_ids.length > 0) {
|
|
324
|
+ for (let i = 0; i < new_drug_ids.length; i++) {
|
|
325
|
+ let obj = {}
|
|
326
|
+ let count = 0
|
|
327
|
+ for (let a = 0; a < details.length; a++) {
|
|
328
|
+ if (new_drug_ids[i].id == details[a].advice.drug_id && new_drug_ids[i].price == details[a].advice.price) {
|
|
329
|
+ obj['name'] = details[a].advice.advice_name
|
|
330
|
+ obj['spec'] = details[a].advice.drug.dose + details[a].advice.drug.dose_unit+"*" + details[a].advice.drug.min_number + details[a].advice.drug.min_unit+"/"+ details[a].advice.drug.max_unit
|
|
331
|
+ obj['unit'] = details[a].advice.drug.min_unit
|
|
332
|
+ obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
|
|
333
|
+ obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
|
|
334
|
+ obj['price'] = parseFloat(details[a].pric)
|
|
335
|
+ obj['is_total'] = 2
|
|
336
|
+ obj['record_date'] = details[a].advice.record_date
|
|
337
|
+ obj['chrgitm_lv'] = details[a].chrgitm_lv
|
|
338
|
+ count = count + details[a].cnt
|
|
339
|
+ }
|
|
340
|
+ }
|
|
341
|
+ obj['count'] = count
|
|
342
|
+ list.push(obj)
|
|
343
|
+
|
|
344
|
+ }
|
|
345
|
+
|
|
346
|
+ for (let i = 0; i < new_project_ids.length; i++) {
|
|
347
|
+ let obj = {}
|
|
348
|
+ let count = 0
|
|
349
|
+ for (let a = 0; a < details.length; a++) {
|
|
350
|
+ if (new_project_ids[i].id == details[a].project.project_id && new_project_ids[i].price == details[a].project.price) {
|
|
351
|
+ if( details[a].project.type == 2){
|
|
352
|
+ obj['name'] = details[a].project.project.project_name
|
|
353
|
+ obj['spec'] = ''
|
|
354
|
+ obj['unit'] = details[a].project.project.unit
|
|
355
|
+
|
|
356
|
+ }else if(details[a].project.type == 3){
|
|
357
|
+ obj['name'] = details[a].project.good_info.good_name
|
|
358
|
+ obj['spec'] = ''
|
|
359
|
+ obj['unit'] = details[a].project.good_info.packing_unit
|
|
360
|
+ }
|
|
361
|
+ obj['medicine_insurance_kind'] = this.getMedicineInsuranceType(details[a].chrgitm_lv)
|
|
362
|
+ obj['med_chrgitm_type'] = this.getType(details[a].med_chrgitm_type)
|
|
363
|
+ obj['price'] = parseFloat(details[a].pric)
|
|
364
|
+ obj['is_total'] = 2
|
|
365
|
+ obj['record_date'] = details[a].project.record_date
|
|
366
|
+ obj['chrgitm_lv'] = details[a].chrgitm_lv
|
|
367
|
+ count = count + details[a].cnt
|
|
368
|
+ }
|
|
369
|
+ }
|
|
370
|
+ obj['count'] = count
|
|
371
|
+ list.push(obj)
|
|
372
|
+
|
|
373
|
+ }
|
|
374
|
+ }
|
|
375
|
+ console.log("list232332322323332233223232323",list)
|
|
376
|
+ return list
|
|
377
|
+ },
|
|
378
|
+
|
|
379
|
+ getMedicineInsuranceType(type) {
|
|
380
|
+ switch (type) {
|
|
381
|
+ case "01":
|
|
382
|
+ return '甲类'
|
|
383
|
+ break
|
|
384
|
+ case "02":
|
|
385
|
+ return '乙类'
|
|
386
|
+
|
|
387
|
+ break
|
|
388
|
+ case "03":
|
|
389
|
+ return '自费'
|
|
390
|
+ break
|
|
391
|
+
|
|
392
|
+ }
|
|
393
|
+
|
|
394
|
+ },
|
|
395
|
+ getType(med_chrgitm_type){
|
|
396
|
+ switch (med_chrgitm_type) {
|
|
397
|
+ case '01':
|
|
398
|
+ return '床位费'
|
|
399
|
+ break
|
|
400
|
+ case '02':
|
|
401
|
+ return '诊察费'
|
|
402
|
+
|
|
403
|
+ break
|
|
404
|
+ case '03':
|
|
405
|
+ return '检查费'
|
|
406
|
+
|
|
407
|
+ break
|
|
408
|
+ case '04':
|
|
409
|
+ return '化验费'
|
|
410
|
+ break
|
|
411
|
+ case '05':
|
|
412
|
+ return '治疗费'
|
|
413
|
+
|
|
414
|
+ break
|
|
415
|
+ case '06':
|
|
416
|
+ return '手术费'
|
|
417
|
+
|
|
418
|
+ break
|
|
419
|
+ case '07':
|
|
420
|
+ return '护理费'
|
|
421
|
+
|
|
422
|
+ break
|
|
423
|
+ case '08':
|
|
424
|
+ return '材料费'
|
|
425
|
+
|
|
426
|
+ break
|
|
427
|
+ case '09':
|
|
428
|
+ return '西药费'
|
|
429
|
+
|
|
430
|
+ break
|
|
431
|
+ case '10':
|
|
432
|
+ return '中药饮片费'
|
|
433
|
+
|
|
434
|
+ break
|
|
435
|
+ case '11':
|
|
436
|
+ return '中成药费'
|
|
437
|
+
|
|
438
|
+ break
|
|
439
|
+ case '12':
|
|
440
|
+ return '一般诊疗费'
|
|
441
|
+
|
|
442
|
+ break
|
|
443
|
+ case '13':
|
|
444
|
+ return '挂号费'
|
|
445
|
+
|
|
446
|
+ break
|
|
447
|
+ case '14':
|
|
448
|
+ return '其他费'
|
|
449
|
+
|
|
450
|
+ break
|
|
451
|
+
|
|
452
|
+ }
|
|
453
|
+ },
|
|
454
|
+ unique(array) {
|
|
455
|
+ // res用来存储结果
|
|
456
|
+ var res = []
|
|
457
|
+ for (var i = 0, arrayLen = array.length; i < arrayLen; i++) {
|
|
458
|
+ for (var j = 0, resLen = res.length; j < resLen; j++) {
|
|
459
|
+ if (array[i].id === res[j].id && array[i].price === res[j].price) {
|
|
460
|
+ break
|
|
461
|
+ }
|
|
462
|
+ }
|
|
463
|
+ // 如果array[i]是唯一的,那么执行完循环,j等于resLen
|
|
464
|
+ if (j === resLen) {
|
|
465
|
+ res.push(array[i])
|
|
466
|
+ }
|
|
467
|
+ }
|
|
468
|
+ return res
|
|
469
|
+ },
|
|
470
|
+ getTotal:function(items){
|
|
471
|
+ let total = 0
|
|
472
|
+ for(let i = 0; i < items.length; i++){
|
|
473
|
+ total = Number(total) + Number((parseFloat(items[i].count) * parseFloat(items[i].price)).toFixed(2))
|
|
474
|
+ }
|
|
475
|
+ return total.toFixed(2)
|
|
476
|
+ },
|
|
477
|
+ getTimes(time) {
|
|
478
|
+ if(time < 0){
|
|
479
|
+ return ""
|
|
480
|
+ }else{
|
|
481
|
+ return uParseTime(time, '{y}-{m}-{d}')
|
|
482
|
+ }
|
|
483
|
+ },
|
|
484
|
+ },
|
|
485
|
+ watch:{
|
|
486
|
+ list: {
|
|
487
|
+ handler(newVal) {
|
|
488
|
+ this.getPage()
|
|
489
|
+ },
|
|
490
|
+ deep: true
|
|
491
|
+ }
|
|
492
|
+ },
|
|
493
|
+ created(){
|
|
494
|
+ this.getGatherDetailList()
|
|
495
|
+ }
|
|
496
|
+
|
|
497
|
+ }
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+</script>
|
|
501
|
+
|
|
502
|
+<style lang="scss" scoped>
|
|
503
|
+.list-print{
|
|
504
|
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
|
|
505
|
+ -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
506
|
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
507
|
+ margin-bottom: 20px;
|
|
508
|
+ padding:20px 10px;
|
|
509
|
+}
|
|
510
|
+.listTitle{
|
|
511
|
+ font-size: 24px;
|
|
512
|
+ text-align: center;
|
|
513
|
+ font-weight: bold;
|
|
514
|
+ margin-bottom: 10px;
|
|
515
|
+}
|
|
516
|
+.listInfo{
|
|
517
|
+ display: flex;
|
|
518
|
+ font-size: 16px;
|
|
519
|
+ justify-content: space-between;
|
|
520
|
+ margin: 10px 0;
|
|
521
|
+}
|
|
522
|
+.listTable{
|
|
523
|
+ width: 100%;
|
|
524
|
+ text-align: center;
|
|
525
|
+ border-collapse: collapse;
|
|
526
|
+ line-height: 40px;
|
|
527
|
+ font-size: 14px;
|
|
528
|
+ border-color: #000;
|
|
529
|
+ text-align: left;
|
|
530
|
+}
|
|
531
|
+.listTable tr td {
|
|
532
|
+ padding: 0 5px;
|
|
533
|
+}
|
|
534
|
+.tableBottom{
|
|
535
|
+ font-size: 16px;
|
|
536
|
+ display: flex;
|
|
537
|
+ margin-top: 20px;
|
|
538
|
+}
|
|
539
|
+.tableBottomOne{
|
|
540
|
+ margin-right: 40px;
|
|
541
|
+}
|
|
542
|
+</style>
|