diff --git a/pages/subcomponent/withdraw.vue b/pages/subcomponent/withdraw.vue
index 6bbd3b5..84ade54 100644
--- a/pages/subcomponent/withdraw.vue
+++ b/pages/subcomponent/withdraw.vue
@@ -34,7 +34,8 @@
提现金额
-
+
@@ -150,8 +151,8 @@ export default {
}
// 验证最小提现金额
- if (amountNum < 1) {
- uni.showToast({ title: '单笔提现不能低于1元', icon: 'none' })
+ if (amountNum <= 0.3) {
+ uni.showToast({ title: '单笔提现不能低于等于0.3元', icon: 'none' })
return
}