From 756b548bf9edde189a1d9faa5a8145439cd1ae1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Sat, 7 Mar 2026 02:08:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(dealer):=20=E4=BF=AE=E5=A4=8D=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E9=A1=B5=E9=9D=A2=E8=B7=B3=E8=BD=AC=E5=92=8C=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E5=9B=BE=E6=A0=87=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将提现金额超限提示的图标从 'error' 改为 'none' - 修复经销商首页可提现金额区域的点击跳转功能 - 移除重复的 onClick 事件绑定,统一在父容器上处理点击事件 --- src/dealer/index.tsx | 4 ++-- src/dealer/withdraw/index.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dealer/index.tsx b/src/dealer/index.tsx index 66ccce6..ca1f6d7 100644 --- a/src/dealer/index.tsx +++ b/src/dealer/index.tsx @@ -134,11 +134,11 @@ const DealerIndex: React.FC = () => { + }} onClick={() => navigateToPage('/dealer/withdraw/index')}> {formatMoney(dealerUser.money)} - navigateToPage('/dealer/withdraw/index')}>可提现 + 可提现 { if (amount > available) { Taro.showToast({ title: '提现金额超过可用余额', - icon: 'error' + icon: 'none' }) return }