This commit is contained in:
77
2024-04-12 00:53:33 +08:00
parent 7f5cedb7c7
commit a415eb818e
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ export function accountCashClose(id) {
export function accountCashBatchSuccess(ids) {
return request({
url: '/cai/accountCash/batchSuccess',
method: 'get',
params: {ids}
method: 'post',
data: {ids}
})
}

View File

@@ -274,7 +274,7 @@ export default {
});
},
handleBatchSuccess() {
const ids = this.ids.split(",");
const ids = this.ids;
this.$modal.confirm('是否批量确认通过该提现?').then(() => {
this.loading = true;
return accountCashBatchSuccess(ids);