Commit 8f9f40c5 by 冷斌

推广

parent 36cb6212
......@@ -78,6 +78,21 @@
methods: {
onWithdraw: function () {
let _this = this;
let error = '';
if (_this.value < _this.min) {
error = '最低满' + this.min + '可提现';
}
if (_this.value > _this.current) {
error = '最多可提现' + this.current;
}
if (_this.value > _this.max) {
error = '最多' + this.max + '可提现';
}
if (error != '') {
ui.error(error);
return;
}
$.ajax({
type: "POST",
url: "{:U('home/User/applySpiltWithdraw')}",
......
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