Commit 9c6ae762 authored by 袁玲利's avatar 袁玲利

Merge branch 'v_req_6.1' into develop

parents fd4a4a3c a83ec8af
......@@ -1529,16 +1529,16 @@ export default {
data: {
schoolId: bankInfo.schoolId,
sessionid: sessionID,
wechattype: 1
wechattype: 1,
},
headers: {
sessionid: sessionID,
contentType: 'application/x-www-form-urlencoded'
contentType: "application/x-www-form-urlencoded"
},
success: function (res) {
console.log(res);
if (res.code == "10000") {
self.rechargeLimit = res.rechargeLimit;
if (res.code == "10000" && res.results) {
self.rechargeLimit = res.results.rechargeLimit || "";
} else {
self.rechargeLimit = "";
}
......
......@@ -943,12 +943,12 @@ export default {
},
headers: {
sessionid: sessionID,
contentType: 'application/x-www-form-urlencoded'
contentType: "application/x-www-form-urlencoded",
},
success: function (res) {
console.log(res);
if (res.code == "10000") {
self.rechargeLimit = res.rechargeLimit;
if (res.code == "10000" && res.results) {
self.rechargeLimit = res.results.rechargeLimit || "";
} else {
self.rechargeLimit = "";
}
......
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