Commit 183bdb07 authored by 袁玲利's avatar 袁玲利

去掉充值写死3元

parent 43420463
......@@ -842,25 +842,25 @@
// 充值
async ExchangeRecharge() {
let amount, bindMedium, summary;
// if (this.isOtherMoney) {
// if (this.inputOtherM == "") {
// uni.showModal({
// title: "系统提示",
// content: "请输入要充值的金额!",
// });
// return;
// }
// amount = this.inputOtherM * 1;
// } else {
// if (this.Money == "") {
// uni.showModal({
// title: "系统提示",
// content: "请选择要充值的金额!",
// });
// return;
// }
// amount = this.Money * 1;
// }
if (this.isOtherMoney) {
if (this.inputOtherM == "") {
uni.showModal({
title: "系统提示",
content: "请输入要充值的金额!",
});
return;
}
amount = this.inputOtherM * 1;
} else {
if (this.Money == "") {
uni.showModal({
title: "系统提示",
content: "请选择要充值的金额!",
});
return;
}
amount = this.Money * 1;
}
let this_ = this;
if (!this.openCardPhon || this.openCardPhon.length !== 11) {
Dialog({
......@@ -910,8 +910,7 @@
break;
}
let params = {
// amount: (amount * 1).toFixed(2), //充值金额,单位元
amount: 3.00,
amount: (amount * 1).toFixed(2), //充值金额,单位元
mobileCode: this.openCardPhonSms, //短信验证码
orderNo: this_.RechargeSmsorderNoInfo.orderNo, //第三方合作交易标识,取充值短信返回的orderNo值
schoolId: bankInfo.schoolId, //学校id
......
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