feat(dealer): 优化业务员申请和团队管理功能

-强制用户手动输入昵称,清空默认微信昵称
- 添加昵称验证逻辑,禁止使用默认昵称
- 优化团队数据加载和展示逻辑
- 添加保存二维码到相册功能
- 调整提现金额门槛为100元
This commit is contained in:
2025-09-12 13:09:41 +08:00
parent b2d79ab052
commit 86516a8334
8 changed files with 359 additions and 192 deletions

View File

@@ -204,9 +204,9 @@ const DealerWithdraw: React.FC = () => {
return
}
if (amount < 10) {
if (amount < 100) {
Taro.showToast({
title: '最低提现金额为10元',
title: '最低提现金额为100元',
icon: 'error'
})
return
@@ -316,7 +316,7 @@ const DealerWithdraw: React.FC = () => {
borderTop: '1px solid rgba(255, 255, 255, 0.3)'
}}>
<Text className="text-white text-opacity-80 text-xs">
¥10
¥100
</Text>
</View>
</View>