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("解挂成功");