|
@@ -12,7 +12,7 @@
|
12
|
12
|
<span style="color: #999">提现金额不能低于100牛币</span>
|
13
|
13
|
<span style="color: #999">未设置过提现密码?<router-link :to="{ name: 'EditTiXianMiMa' }">设置提现密码</router-link></span>
|
14
|
14
|
<div class="Btn">
|
15
|
|
- <a @click="ToCashOut">提现</a>
|
|
15
|
+ <a @click="ToCashOut">{{DataLock ? '正在提交...' : '提现'}}</a>
|
16
|
16
|
</div>
|
17
|
17
|
</div>
|
18
|
18
|
</MainPageContainer>
|
|
@@ -78,6 +78,9 @@ export default {
|
78
|
78
|
this.DataLock = true
|
79
|
79
|
this.CashOut({ data: { amount: this.Amount, cashPass: md5(this.Password) } }).then((res) => {
|
80
|
80
|
this.Toast('提现成功')
|
|
81
|
+ this.UpdateUserInfo({ urlData: { id: this.UserInfo.customerId } }).then(() => {
|
|
82
|
+ this.$router.go(-1)
|
|
83
|
+ })
|
81
|
84
|
this.DataLock = false
|
82
|
85
|
}).catch((res) => {
|
83
|
86
|
this.Toast(res.data.message)
|