diff --git a/src/components/patientRegister/AsbChargeRequest.vue b/src/components/patientRegister/AsbChargeRequest.vue index 55e92a2..6003167 100644 --- a/src/components/patientRegister/AsbChargeRequest.vue +++ b/src/components/patientRegister/AsbChargeRequest.vue @@ -19,28 +19,30 @@ - + - + - + @@ -196,6 +198,17 @@ export default { }) }, + // 撤消申请(作废申请) + refreshRequest(row) { + console.log('refreshRequest',row) + postapi('/api/app/ChargeRequest/SyncChargeRequestFlagFromInterface', { chargeRequestId: row.id }) + .then(res => { + if (res.code > -1) { + this.btnRefresh() + } + }) + }, + // 撤消申请(作废申请) cancelRequest(row) { postapi('/api/app/ChargeRequest/CancelChargeRequest', { chargeRequestId: row.id })