var salesInfo = { /*template: ` `,*/ template: '', 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; }) }) }) } }