From c3db6a2da7a5dd65296988849f501fd7408dc92a Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Thu, 6 Jun 2024 21:59:26 +0800 Subject: [PATCH] sf --- .../patientRegister/AsbChargeRequest.vue | 39 ++++++++++++------- 1 file changed, 26 insertions(+), 13 deletions(-) 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 })