| 12345678910111213141516171819202122232425262728 |
- var app = new Vue({
- 'el': '#app',
- 'data': {
- // 当前导航
- type: 1,
- info: {},
- },
- created: function(){
- this.type = getParam('type');
- this.type = this.type? this.type : 1;
- this.getInfo();
- },
- methods: {
- // 获取账户信息
- getInfo: function(){
- var _this = this;
- $.showLoading("数据加载中...");
- $.post('/weixin/member/getMemberInfo', {type: _this.type}, function (res) {
- $.hideLoading();
- if (res.code == 'success') {
- _this.info = res.data
- }else if(res.code == 'login'){
- login(res.data.url);
- }
- }, "json");
- }
- }
- })
|