From aee6131b3d37cee237df0ba140edc5ed8aede709 Mon Sep 17 00:00:00 2001 From: zzyuan <781948537@qq.com> Date: Tue, 17 Jun 2025 17:54:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=A1=E5=8A=A1=E7=AE=A1=E7=90=86=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=B8=A6serialNum?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../canteen/accountCenter/cardManage/cardList/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/canteen/accountCenter/cardManage/cardList/index.vue b/src/views/canteen/accountCenter/cardManage/cardList/index.vue index 8b5805e5..44114641 100644 --- a/src/views/canteen/accountCenter/cardManage/cardList/index.vue +++ b/src/views/canteen/accountCenter/cardManage/cardList/index.vue @@ -236,7 +236,7 @@ /** 退卡按钮操作 */ handleReturn(row) { this.$modal.confirm('是否确认退卡?').then(function() { - return accCardRefundApi({"accountId":row.accountId}); + return accCardRefundApi({"accountId":row.accountId,"serialNum":row.serialNum}); }).then(() => { this.getList(); this.$modal.msgSuccess("退卡成功"); @@ -245,7 +245,7 @@ /** 挂失按钮操作 */ handleLoss(row) { this.$modal.confirm('是否确认挂失?').then(function() { - return accCardLossApi({"accountId":row.accountId}); + return accCardLossApi({"accountId":row.accountId,"serialNum":row.serialNum}); }).then(() => { this.getList(); this.$modal.msgSuccess("挂失成功"); @@ -254,7 +254,7 @@ /** 解挂按钮操作 */ handleRelieve(row) { this.$modal.confirm('是否确认解挂?').then(function() { - return accCardRelieveApi({"accountId":row.accountId}); + return accCardRelieveApi({"accountId":row.accountId,"serialNum":row.serialNum}); }).then(() => { this.getList(); this.$modal.msgSuccess("解挂成功");