Commit 8ba12c6d authored by 袁玲利's avatar 袁玲利

钱包充值限制开关查询

parent 72eba7c4
...@@ -956,6 +956,7 @@ export default { ...@@ -956,6 +956,7 @@ export default {
console.log(res); console.log(res);
if (res.code == "10000" && res.results) { if (res.code == "10000" && res.results) {
self.rechargeLimit = res.results.rechargeLimit || ""; self.rechargeLimit = res.results.rechargeLimit || "";
console.log(self.rechargeLimit, 'rechargeLimit')
if(self.rechargeLimit == '1'){ if(self.rechargeLimit == '1'){
self.queryWalletRechargeLimit(); // 查询钱包充值限制 self.queryWalletRechargeLimit(); // 查询钱包充值限制
} }
...@@ -992,7 +993,7 @@ export default { ...@@ -992,7 +993,7 @@ export default {
} }
}, },
error: function (err) { error: function (err) {
weui.topTips("获取用户银行信息失败!"); weui.topTips("查询钱包充值限制失败!");
}, },
}); });
}, },
......
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