卡务管理参数带serialNum
This commit is contained in:
parent
f5003f9d60
commit
aee6131b3d
|
|
@ -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("解挂成功");
|
||||
|
|
|
|||
Loading…
Reference in New Issue