封装的post请求
config是重点

export function post(url, data = {},config = {}) {
  return new Promise((resolve, reject) => {
    axios.post(url, data,config)
      .then(response => {
        if (response) {
          resolve(response.data);
        } else {
          router.push({
            path: '/'
          })
        }
      }, err => {
        // reject(err);
      })
  })
}

代码中实现(ui样式可以随便参考一下其他的)
$nextTick实现dom的异步刷新,具体见这个链接 简单理解Vue中的nextTick

      post("/merchant/v1/account/queryMerchantAccountDetail", data, {
        onDownloadProgress(a) {
          var percent = parseInt(100 * (a.loaded / a.total));
          _this.$nextTick(() => {
            _this.progressNum = percent;
          });
        }
      }).then(response => {
        if (response.data) {
          this.excelData = response.data.results[0].list;
          this.outExe5();
        }
      });
Logo

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

更多推荐