Commit a83ec8af authored by 袁玲利's avatar 袁玲利

充值bug修复

parent e8c16a2b
......@@ -1533,12 +1533,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 = "";
}
......
......@@ -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