From bb04c3c6db7c0c4119979c1f781e52016d8f9ae0 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 23 Oct 2025 18:47:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8F=90=E7=8E=B0=E8=B5=84=E6=96=99?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E9=A1=B5):=20=E5=AF=B9=E6=8E=A5=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E7=94=B3=E8=AF=B7=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/lottery.js | 11 +++++++++++ src/views/Wallet/CashOut/KYC.vue | 26 ++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/src/api/lottery.js b/src/api/lottery.js index 1f4fd67..67bfb92 100644 --- a/src/api/lottery.js +++ b/src/api/lottery.js @@ -140,3 +140,14 @@ export const withdrawRecords = async () => { throw error } } + +// 提交提现申请 +export const withdrawApply = async (data) => { + try { + const response = await post('/activity/lottery/withdraw/apply', data) + return response + } catch (error) { + console.error('Failed to fetch withdraw apply:', error) + throw error + } +} diff --git a/src/views/Wallet/CashOut/KYC.vue b/src/views/Wallet/CashOut/KYC.vue index 40338fe..52de529 100644 --- a/src/views/Wallet/CashOut/KYC.vue +++ b/src/views/Wallet/CashOut/KYC.vue @@ -31,6 +31,7 @@