Commit 90a892d9 by 冷斌

fix bug

parent 5f7ccecb
...@@ -64,7 +64,17 @@ ...@@ -64,7 +64,17 @@
withdraw_money:'', // 提现金额 withdraw_money:'', // 提现金额
}, },
methods: { methods: {
//事件 info() {
let userInfo = sessionStorage.getItem("user_info");
if (!userInfo) {
window.location.href = '/index.php?g=Appapi&m=Login&a=index';
}
return JSON.parse(userInfo);
},
url(url) {
let info = this.info();
return url + '&uid=' + info.id + '&token=' + info.token;
},
chooseWay(index) { chooseWay(index) {
this.wayNum = index this.wayNum = index
}, },
......
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