|
|
|
@ -306,7 +306,7 @@ |
|
|
|
|
.replace(/\./g, "") |
|
|
|
|
.replace("$#$", ".") |
|
|
|
|
} |
|
|
|
|
if (num > Number(this.balance)) { // 判断value值是否小于等于100, 如果大于100限制输入100 |
|
|
|
|
if (num > Number(this.balance)) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: this.balance > 0 ? `最多可用${Number(this.balance)}元, 请重新输入` : '暂无可提现金额', |
|
|
|
|
icon: 'none', |
|
|
|
@ -315,7 +315,7 @@ |
|
|
|
|
this.obj.money = this.balance > 0 ? this.balance : '' |
|
|
|
|
this.$forceUpdate(); |
|
|
|
|
} else { |
|
|
|
|
if (!num) { // 判断value值是否等于空,为空amount默认0, |
|
|
|
|
if (!num) { |
|
|
|
|
this.obj.money = '' |
|
|
|
|
this.$forceUpdate(); |
|
|
|
|
} else { |
|
|
|
|