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