卡务管理参数带serialNum
This commit is contained in:
parent
f5003f9d60
commit
aee6131b3d
|
|
@ -236,7 +236,7 @@
|
||||||
/** 退卡按钮操作 */
|
/** 退卡按钮操作 */
|
||||||
handleReturn(row) {
|
handleReturn(row) {
|
||||||
this.$modal.confirm('是否确认退卡?').then(function() {
|
this.$modal.confirm('是否确认退卡?').then(function() {
|
||||||
return accCardRefundApi({"accountId":row.accountId});
|
return accCardRefundApi({"accountId":row.accountId,"serialNum":row.serialNum});
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("退卡成功");
|
this.$modal.msgSuccess("退卡成功");
|
||||||
|
|
@ -245,7 +245,7 @@
|
||||||
/** 挂失按钮操作 */
|
/** 挂失按钮操作 */
|
||||||
handleLoss(row) {
|
handleLoss(row) {
|
||||||
this.$modal.confirm('是否确认挂失?').then(function() {
|
this.$modal.confirm('是否确认挂失?').then(function() {
|
||||||
return accCardLossApi({"accountId":row.accountId});
|
return accCardLossApi({"accountId":row.accountId,"serialNum":row.serialNum});
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("挂失成功");
|
this.$modal.msgSuccess("挂失成功");
|
||||||
|
|
@ -254,7 +254,7 @@
|
||||||
/** 解挂按钮操作 */
|
/** 解挂按钮操作 */
|
||||||
handleRelieve(row) {
|
handleRelieve(row) {
|
||||||
this.$modal.confirm('是否确认解挂?').then(function() {
|
this.$modal.confirm('是否确认解挂?').then(function() {
|
||||||
return accCardRelieveApi({"accountId":row.accountId});
|
return accCardRelieveApi({"accountId":row.accountId,"serialNum":row.serialNum});
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.$modal.msgSuccess("解挂成功");
|
this.$modal.msgSuccess("解挂成功");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue