Compare commits
2 Commits
128a566162
...
4d96ca4569
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d96ca4569 | |||
| daafca1d5d |
@@ -308,6 +308,13 @@ const DealerWithdraw: React.FC = () => {
|
|||||||
// return
|
// return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (amount > 200) {
|
||||||
|
Taro.showToast({
|
||||||
|
title: '单笔最多提现200元',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
if (amount > available) {
|
if (amount > available) {
|
||||||
Taro.showToast({
|
Taro.showToast({
|
||||||
title: '提现金额超过可用余额',
|
title: '提现金额超过可用余额',
|
||||||
@@ -413,7 +420,7 @@ const DealerWithdraw: React.FC = () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const quickAmounts = ['100', '300', '500', '1000']
|
const quickAmounts = ['50', '100', '200']
|
||||||
|
|
||||||
const setQuickAmount = (amount: string) => {
|
const setQuickAmount = (amount: string) => {
|
||||||
formRef.current?.setFieldsValue({amount})
|
formRef.current?.setFieldsValue({amount})
|
||||||
@@ -525,6 +532,7 @@ const DealerWithdraw: React.FC = () => {
|
|||||||
1. 提取佣金必须完成实名认证。
|
1. 提取佣金必须完成实名认证。
|
||||||
2. 佣金非自动到账,在您提取佣金申请通过后,请手动到我的申请记录点击领取。
|
2. 佣金非自动到账,在您提取佣金申请通过后,请手动到我的申请记录点击领取。
|
||||||
3. 桂乐淘温馨提示,请您依法依规申报所得,缴税相关税费。
|
3. 桂乐淘温馨提示,请您依法依规申报所得,缴税相关税费。
|
||||||
|
4. 单笔提现最高金额为200。
|
||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
</CellGroup>
|
</CellGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user