fix(dealer): 修复提现页面跳转和提示图标问题

- 将提现金额超限提示的图标从 'error' 改为 'none'
- 修复经销商首页可提现金额区域的点击跳转功能
- 移除重复的 onClick 事件绑定,统一在父容器上处理点击事件
This commit is contained in:
2026-03-07 02:08:42 +08:00
parent 76e76c62ef
commit 756b548bf9
2 changed files with 3 additions and 3 deletions

View File

@@ -311,7 +311,7 @@ const DealerWithdraw: React.FC = () => {
if (amount > available) {
Taro.showToast({
title: '提现金额超过可用余额',
icon: 'error'
icon: 'none'
})
return
}