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

去掉充值写死3元

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