diff --git a/pages/dealer/withdraw/apply.vue b/pages/dealer/withdraw/apply.vue index 3e0e68c..8679a37 100644 --- a/pages/dealer/withdraw/apply.vue +++ b/pages/dealer/withdraw/apply.vue @@ -20,8 +20,8 @@ {{ words.money.value }}: - + @@ -150,7 +150,6 @@ methods: { wordsAmount(e) { - let that=this let amount = e.detail.value let num = null num = amount.replace(new RegExp('^(\\d+\\.\\d{2}).+'), '$1') @@ -169,19 +168,26 @@ .replace(/\./g, "") .replace("$#$", ".") } - if (num > Number(that.settlement.min_money)) { + if (Number(this.dealer.money) == 0) { uni.showToast({ - title: that.settlement.min_money > 0 ? `最多可用${Number(that.settlement.min_money)}元, 请重新输入` : - '暂无可提现金额', + title: `暂无可提现金额`, icon: 'none', duration: 2000 }) - that.inputValue = '' - that.$forceUpdate(); + this.inputValue = '' + this.$forceUpdate(); + } else if (Number(this.settlement.min_money) > num) { // 判断value值是否小于等于100, 如果大于100限制输入100 + uni.showToast({ + title: `最低可提现金额为${Number(this.settlement.min_money)}元, 请重新输入`, + icon: 'none', + duration: 2000 + }) + this.inputValue = '' + this.$forceUpdate(); } else { if (!num) { // 判断value值是否等于空,为空amount默认0, - that.inputValue = '' - that.$forceUpdate(); + this.inputValue = '' + this.$forceUpdate(); } } },