main
fanfan 6 months ago
parent 122bf7c837
commit f953640af1
  1. 26
      pages/dealer/withdraw/apply.vue

@ -20,8 +20,8 @@
<view class="capital__item dis-flex flex-y-center">
<view class="item__left">{{ words.money.value }}</view>
<view class="item__right flex-box">
<input class="input" v-model="inputValue" type="digit" name="money"
@blur="wordsAmount" :placeholder="words.money_placeholder.value" />
<input class="input" v-model="inputValue" type="digit" name="money" @blur="wordsAmount"
:placeholder="words.money_placeholder.value" />
</view>
</view>
</view>
@ -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) { // value100, 100100
uni.showToast({
title: `最低可提现金额为${Number(this.settlement.min_money)}元, 请重新输入`,
icon: 'none',
duration: 2000
})
this.inputValue = ''
this.$forceUpdate();
} else {
if (!num) { // value,amount0,
that.inputValue = ''
that.$forceUpdate();
this.inputValue = ''
this.$forceUpdate();
}
}
},

Loading…
Cancel
Save