|
|
@@ -229,7 +229,7 @@
|
|
|
}
|
|
|
let data = {
|
|
|
extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
|
|
|
- money: this.withdrawal, //金额
|
|
|
+ money: this.withdrawal * 1, //金额
|
|
|
// type: 0 ,//0佣金1余额
|
|
|
// balance_type: this.typee
|
|
|
};
|
|
|
@@ -237,7 +237,7 @@
|
|
|
if (!this.withdrawal) {
|
|
|
return this.$api.msg('请输入提现金额')
|
|
|
}
|
|
|
- if (this.withdrawal < this.minPrice) {
|
|
|
+ if (this.withdrawal * 1 < this.minPrice * 1) {
|
|
|
uni.showToast({
|
|
|
title: '提现金额不可少于' + this.minPrice,
|
|
|
duration: 2000,
|