|
@@ -99,9 +99,6 @@
|
99
|
99
|
<template slot-scope="scope">{{scope.row.hifob_pay.toFixed(2)}}</template>
|
100
|
100
|
</el-table-column>
|
101
|
101
|
|
102
|
|
- <el-table-column align="center" prop="item_name" label="大病基金支付">
|
103
|
|
- <template slot-scope="scope">{{scope.row.hifmi_pay.toFixed(2)}}</template>
|
104
|
|
- </el-table-column>
|
105
|
102
|
|
106
|
103
|
<el-table-column align="center" prop="item_name" label="医疗救助基金">
|
107
|
104
|
<template slot-scope="scope">{{scope.row.maf_pay.toFixed(2)}}</template>
|
|
@@ -364,6 +361,11 @@
|
364
|
361
|
let psn_cash_pay = ""
|
365
|
362
|
let hifes_pay = ""
|
366
|
363
|
let hifmi_pay = ""
|
|
364
|
+ let hifp_pay = ""
|
|
365
|
+ let hifob_pay = ""
|
|
366
|
+ let maf_pay = ""
|
|
367
|
+
|
|
368
|
+
|
367
|
369
|
let total = ""
|
368
|
370
|
|
369
|
371
|
if(order.setl_time.length == 0){
|
|
@@ -394,10 +396,15 @@
|
394
|
396
|
|
395
|
397
|
medfee_sumamt = order.medfee_sumamt
|
396
|
398
|
fund_pay_sumamt = order.fund_pay_sumamt
|
|
399
|
+
|
397
|
400
|
acct_pay = order.acct_pay
|
|
401
|
+
|
398
|
402
|
psn_cash_pay = order.psn_cash_pay
|
399
|
403
|
hifes_pay = order.hifes_pay
|
400
|
404
|
hifmi_pay = order.hifmi_pay
|
|
405
|
+ hifp_pay = order.hifp_pay
|
|
406
|
+ hifob_pay = order.hifob_pay
|
|
407
|
+ maf_pay = order.maf_pay
|
401
|
408
|
total = order.total
|
402
|
409
|
|
403
|
410
|
|
|
@@ -408,6 +415,9 @@
|
408
|
415
|
'处方类型': med_type,
|
409
|
416
|
'医疗费总额': medfee_sumamt,
|
410
|
417
|
'基金支付金额': fund_pay_sumamt,
|
|
418
|
+ '基金统筹金额': hifp_pay,
|
|
419
|
+ '大额基金支付':hifob_pay,
|
|
420
|
+ '医疗救助基金':maf_pay,
|
411
|
421
|
'个人账户支付金额': acct_pay,
|
412
|
422
|
'个人支付基金': psn_cash_pay,
|
413
|
423
|
'企业补充医疗保险基金支出': hifes_pay,
|