1.设置充值金额

yj-dev
杨杰 3 years ago
parent 087440ba61
commit 4ae82dd51c
  1. 70
      subPages/trade-union-recharge/trade-union-recharge.vue

@ -21,14 +21,14 @@
{{amount}}
</view>
</view>
<view class="num">
<!-- <view class="num">
<view class="text">
自定义充值金额
</view>
<view class="input">
<input type="number" maxlength="4" v-model="inputAmount" />
</view>
</view>
</view> -->
</view>
</view>
</view>
@ -77,7 +77,7 @@
data() {
return {
inputAmount: '', //
amountList: [50, 100, 200], //3
amountList: [50, 100, 150], //3
paytype: 'wxpay', //
user: "",
imagewxUrl: app.globalData.imageWxImg,
@ -105,38 +105,38 @@
});
return;
}
if (parseFloat(this.inputAmount).toString() == "NaN") {
uni.showToast({
title: '请输入正确金额',
icon: 'none',
duration: 2000
});
return;
}
if (this.inputAmount <= 0) {
uni.showToast({
title: '请输入大于0的金额',
icon: 'none',
duration: 2000
});
return;
}
if (this.inputAmount > 2000) {
uni.showToast({
title: '充值金额不能超过大于2000',
icon: 'none',
duration: 2000
});
return;
}
if (parseFloat(this.inputAmount).toFixed(2) != parseFloat(this.inputAmount)) {
uni.showToast({
title: '最多只能输入两位小数哦~',
icon: 'none',
duration: 2000
});
return;
}
// if (parseFloat(this.inputAmount).toString() == "NaN") {
// uni.showToast({
// title: '',
// icon: 'none',
// duration: 2000
// });
// return;
// }
// if (this.inputAmount <= 0) {
// uni.showToast({
// title: '0',
// icon: 'none',
// duration: 2000
// });
// return;
// }
// if (this.inputAmount > 2000) {
// uni.showToast({
// title: '2000',
// icon: 'none',
// duration: 2000
// });
// return;
// }
// if (parseFloat(this.inputAmount).toFixed(2) != parseFloat(this.inputAmount)) {
// uni.showToast({
// title: '~',
// icon: 'none',
// duration: 2000
// });
// return;
// }
uni.showLoading({
title: '正在提交订单...'
})

Loading…
Cancel
Save