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(); } } }, diff --git a/pages/goods/components/setPrice.vue b/pages/goods/components/setPrice.vue index e9221b5..7d7bae4 100644 --- a/pages/goods/components/setPrice.vue +++ b/pages/goods/components/setPrice.vue @@ -16,7 +16,7 @@ {{startTime?startTime:'起始时间'}} - + 秒杀时长: /小时 @@ -44,8 +44,9 @@ - + + \ No newline at end of file + diff --git a/pages/user/index.vue b/pages/user/index.vue index ca47f53..1be819c 100644 --- a/pages/user/index.vue +++ b/pages/user/index.vue @@ -503,7 +503,7 @@ 会员管理 - + 进群有礼 @@ -1307,10 +1307,10 @@ } .goodsInfo { - margin-bottom: 12rpx; - height: 60rpx; + overflow: hidden; .title { + height: 60rpx; display: flex; align-items: center; margin-top: 10rpx;