main
fanfan 8 months ago
parent 23e341e015
commit d439e6dfb0
  1. 2
      pages/dealer/withdraw/apply.vue
  2. 4
      pages/news/user/withdrawal.vue

@ -168,7 +168,7 @@
.replace(/\./g, "")
.replace("$#$", ".")
}
if (num > Number(this.settlement.min_money)) { // value100, 100100
if (num > Number(this.settlement.min_money)) {
uni.showToast({
title: this.settlement.min_money > 0 ? `最多可用${Number(this.settlement.min_money)}元, 请重新输入` :
'暂无可提现金额',

@ -306,7 +306,7 @@
.replace(/\./g, "")
.replace("$#$", ".")
}
if (num > Number(this.balance)) { // value100, 100100
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,amount0,
if (!num) {
this.obj.money = ''
this.$forceUpdate();
} else {

Loading…
Cancel
Save