Commit 5b764f2a authored by 李智书's avatar 李智书

1.提交更新;

parent 21cafe4e
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
duration: 0 duration: 0
}); });
$.ajax({ $.ajax({
url: gHost + '/bocom/exchange/withdrawSms', url: gHost + '/bank-wechat/bocom/exchange/withdrawSms',
type: "POST", type: "POST",
contentType: "application/x-www-form-urlencoded", contentType: "application/x-www-form-urlencoded",
data: { data: {
...@@ -246,7 +246,21 @@ ...@@ -246,7 +246,21 @@
}, },
// 提现 // 提现
async toDeposit() { async toDeposit() {
if (!this.inputOtherM) {
uni.showModal({
title: "系统提示",
content: "请输入要提现的金额!"
})
return
}
if (this.inputOtherM * 1 < 0.01) {
weui.topTips('提现金额须大于等于0.01元');
return
}
if (this.inputOtherM * 1 > this.ReflectMoney) {
weui.topTips(`提现金额不可大于账户余额`);
return
}
this.$refs.popup.open('top') this.$refs.popup.open('top')
}, },
// 提现 // 提现
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment