From 7c452ce42f31ce4dc0e77021d0bf627fccf8d100 Mon Sep 17 00:00:00 2001 From: speakeloudest Date: Fri, 1 May 2026 07:43:11 +0300 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/UserInfo/components/WalletDialog.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/UserCenter/components/UserInfo/components/WalletDialog.vue b/src/pages/UserCenter/components/UserInfo/components/WalletDialog.vue index 85b0c50..79b52e3 100644 --- a/src/pages/UserCenter/components/UserInfo/components/WalletDialog.vue +++ b/src/pages/UserCenter/components/UserInfo/components/WalletDialog.vue @@ -210,7 +210,7 @@ const onSubmit = handleSubmit(async (val) => { const amount = parseFloat(val.money) // 1. 基础校验 - if (amount > props.commission / 100) return toast.error('佣金不足') + // if (amount > props.commission / 100) return toast.error('佣金不足') const minAmount = val.type === 'USDT(TRC20)' ? 30 : 200 if (amount < minAmount) return toast.error(`金额不能小于${minAmount}${val.type === 'USDT(TRC20)' ? 'USDT' : 'RMB'}`) @@ -219,7 +219,7 @@ const onSubmit = handleSubmit(async (val) => { isPending.value = true // 2. 检查是否有未完成工单 - const data = await request.get('/v1/public/ticket/list', { + const data = await request.get('/api/v1/public/ticket/list', { page: 1, size: 1, issue_type: 1, @@ -233,7 +233,7 @@ const onSubmit = handleSubmit(async (val) => { const description = val.type === 'USDT(TRC20)' ? `${val.type}-${val.account}` : `${val.type}-${val.avatar}` - await request.post('/v1/public/ticket/', { + await request.post('/api/v1/public/ticket/', { title: `提现-${val.money}`, description, issue_type: 1,