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 @@