|
@@ -6,7 +6,7 @@
|
6
|
6
|
<div class="Form">
|
7
|
7
|
<input type="number" placeholder="请输入提现金额" v-model="Amount">
|
8
|
8
|
</div>
|
9
|
|
- <span style="color: #999">提现金额不能低于100元,1元=100牛币</span>
|
|
9
|
+ <span style="color: #999">提现金额不能低于1元,1元=100牛币</span>
|
10
|
10
|
<span style="color: #999">未设置过提现密码?<router-link :to="{ name: 'EditTiXianMiMa' }">设置提现密码</router-link></span>
|
11
|
11
|
<div class="Btn">
|
12
|
12
|
<a @click="ToShowPasswordPopup">提现</a>
|
|
@@ -72,8 +72,8 @@ export default {
|
72
|
72
|
this.Toast('提现金额不能为空')
|
73
|
73
|
return false
|
74
|
74
|
}
|
75
|
|
- if (this.Amount - 0 < 100) {
|
76
|
|
- this.Toast('提现金额不能低于100元')
|
|
75
|
+ if (this.Amount - 0 < 1) {
|
|
76
|
+ this.Toast('提现金额不能低于1元')
|
77
|
77
|
return false
|
78
|
78
|
}
|
79
|
79
|
if (this.Amount - 0 > (this.UserInfo.account.cash - 0) / 100) {
|