var userInfo = { /*template: ` `,*/ template : '', data: function () { return { userInfo: {}, agentInfo: {} } }, methods: { goShortRoom: function () { var p = $.getQueryObj(); var url = "short_room.html?agentid="+p.agentid+"&channelid="+p.channelid; if(p.unionid) url = url + "&unionid=" + this.params.unionid; if(p.unionid) url = url + "&playerid=" + this.params.playerid; window.location.href = url; } }, created: function () { var that = this; $.getAgentInfo(function (agentInfo) { that.agentInfo = agentInfo; $.getWxInfo(function (res) { that.userInfo = res; }) }) } }