定义的方法:ps:方法是向后台请求数据

async getStoreSceneList(CustomerID) {
  let that = this;
  let data = {
    CustomerID: CustomerID
  };
  await api.getStoreSceneEmployee(data).then(res => {
    if (res.error_code === "Success") {
      console.log(123)
    } else {
      that.$Message.error(res.error_message);
    }
  });
}

调用时:

let that=this
that.getStoreSceneList(res.ID).then(() => {
    console.log(456)
})

结果:
先输出:123 后输出:456

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐