|
@@ -133,7 +133,7 @@
|
133
|
133
|
</el-button>
|
134
|
134
|
<el-button
|
135
|
135
|
v-if="items.curPrescriptions.order.order_status == 1 && items.curPrescriptions.order.is_pre == 1 && hisPatientInfo.balance_accounts_type != 2"
|
136
|
|
- size="small" @click="open(11)" type="primary"
|
|
136
|
+ size="small" @click="open(11,items.med_type,items.prescriptions[0].order,items.prescriptions)" type="primary"
|
137
|
137
|
>撤销明细
|
138
|
138
|
</el-button>
|
139
|
139
|
<!--<div>{{ items.curPrescriptions.order.order_status}}</div>-->
|
|
@@ -159,7 +159,7 @@
|
159
|
159
|
|
160
|
160
|
|
161
|
161
|
<span>医疗费总额:<span style="color:red;">{{ items.curPrescriptions.order.medfee_sumamt ? items.curPrescriptions.order.medfee_sumamt:getTotalFour(items.prescriptions)?getTotalFour(items.prescriptions):'' }}元</span></span>
|
162
|
|
- <span>基金支付金额:<span style="color:red;">{{ items.curPrescriptions.order.fund_pay_sumamt?items.curPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
|
|
162
|
+ <span>基金支付金额:<span style="color:red;">{{ items.curPrescriptions.order.hifp_pay?items.curPrescriptions.order.hifp_pay:''}}元</span></span>
|
163
|
163
|
<span>个人账户支付金额:<span style="color:red;">{{ items.curPrescriptions.order.acct_pay?items.curPrescriptions.order.acct_pay:''}}元</span></span>
|
164
|
164
|
<span v-if="hisPatientInfo.balance_accounts_type != 2">个人支付金额:<span
|
165
|
165
|
style="color:red;">{{ items.curPrescriptions.order.psn_cash_pay?items.curPrescriptions.order.psn_cash_pay:''}}元</span></span>
|
|
@@ -323,7 +323,7 @@
|
323
|
323
|
style="color:red;">{{ items.month_total }}元</span></span>
|
324
|
324
|
|
325
|
325
|
<span>医疗费总额:<span style="color:red;">{{ items.curMonthPrescriptions.order.medfee_sumamt ? items.curMonthPrescriptions.order.medfee_sumamt:getTotalFour(items.month_prescriptions)?getTotalFour(items.month_prescriptions):'' }}元</span></span>
|
326
|
|
- <span>基金支付金额:<span style="color:red;">{{ items.curMonthPrescriptions.order.fund_pay_sumamt?items.curMonthPrescriptions.order.fund_pay_sumamt:''}}元</span></span>
|
|
326
|
+ <span>基金支付金额:<span style="color:red;">{{ items.curMonthPrescriptions.order.hifp_pay?items.curMonthPrescriptions.order.hifp_pay:''}}元</span></span>
|
327
|
327
|
<span>个人账户支付金额:<span style="color:red;">{{ items.curMonthPrescriptions.order.acct_pay?items.curMonthPrescriptions.order.acct_pay:''}}元</span></span>
|
328
|
328
|
<!--<span>个人支付金额:<span style="color:red;">{{ items.curMonthPrescriptions.order.psn_cash_pay?items.curMonthPrescriptions.order.psn_cash_pay:''}}元</span></span>-->
|
329
|
329
|
|
|
@@ -2202,8 +2202,8 @@
|
2202
|
2202
|
} else if (index == 11) {
|
2203
|
2203
|
var that = this
|
2204
|
2204
|
let params = {
|
2205
|
|
- 'order_id': this.order.id,
|
2206
|
|
- 'number': this.order.number,
|
|
2205
|
+ 'order_id': order.id,
|
|
2206
|
+ 'number': order.number,
|
2207
|
2207
|
'patient_id': this.patientInfo.id,
|
2208
|
2208
|
'record_time': this.record_date,
|
2209
|
2209
|
'org_id': this.$store.getters.xt_user.org_id,
|
|
@@ -2687,7 +2687,7 @@
|
2687
|
2687
|
this.current_index = 0
|
2688
|
2688
|
|
2689
|
2689
|
this.$refs.tab.setCurrentRow(this.patientTableData[0])
|
2690
|
|
- this.getPatientInformation(this.patientTableData[0].id, this.patientTableData[0].order_number, this.patientTableData[0].his_patient_id, this.patientTableData[0].order_id)
|
|
2690
|
+ // this.getPatientInformation(this.patientTableData[0].id, this.patientTableData[0].order_number, this.patientTableData[0].his_patient_id, this.patientTableData[0].order_id)
|
2691
|
2691
|
|
2692
|
2692
|
}
|
2693
|
2693
|
|