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) { export function accountCashBatchSuccess(ids) {
return request({ return request({
url: '/cai/accountCash/batchSuccess', url: '/cai/accountCash/batchSuccess',
method: 'get', method: 'post',
params: {ids} data: {ids}
}) })
} }

View File

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