var salesInfo = {
/*template: `
![avatar]()
-
昵 称:{{wxInfo.nickname}}
代理ID:{{userInfo.salesid}}
-
`,*/
template: '![avatar]()
昵 称:{{wxInfo.nickname}}
代理ID:{{userInfo.salesid}}
',
data: function () {
return {
salesInfo: {},
wxInfo: {},
agentInfo: {}
}
},
created: function () {
var that = this;
$.getAgentInfo(function (agentInfo) {
that.agentInfo = agentInfo;
$.getWxInfo(function (wxInfo) {
that.wxInfo = wxInfo;
$.getUserInfo(function (res) {
that.salesInfo = res;
})
})
})
}
}