From 0449c4fe8f9892d5552eb436671cc4e214435533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8?= Date: Wed, 13 May 2026 15:05:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=A0=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modules/capital/withdraw.ts | 16 + .../withdraw/components/WithdrawDialog.vue | 106 +++-- src/views/capital/withdrawCheck/index.vue | 411 +++++++++--------- src/views/capital/withdrawCheck/options.ts | 64 +-- 4 files changed, 298 insertions(+), 299 deletions(-) diff --git a/src/api/modules/capital/withdraw.ts b/src/api/modules/capital/withdraw.ts index e8285a2..527c765 100644 --- a/src/api/modules/capital/withdraw.ts +++ b/src/api/modules/capital/withdraw.ts @@ -44,4 +44,20 @@ export const withdraw = (params: { beneficiary_bank_account: string }) => { return request.post('/withdraw/withdraw', params) +} + +// 提现审核列表 +export const getWithdrawReviewList = (params: { + page: number + page_size: number + start_time?: string + end_time?: string + user_name?: string +}) => { + return request.get('/withdraw/withdrawReviewList', params as any) +} + +// 提现审核操作(通过/驳回) +export const withdrawReviewOrder = (params: { id: number; status: number }) => { + return request.post('/withdraw/withdrawReviewOrder', params) } \ No newline at end of file diff --git a/src/views/capital/withdraw/components/WithdrawDialog.vue b/src/views/capital/withdraw/components/WithdrawDialog.vue index 411e62b..d87a2b4 100644 --- a/src/views/capital/withdraw/components/WithdrawDialog.vue +++ b/src/views/capital/withdraw/components/WithdrawDialog.vue @@ -1,11 +1,7 @@