兰宝车间质量管理系统-前端
疯狂的狮子Li
2023-07-25 0082354aba6d4202f97cd8f79412d74e015f3b9f
src/plugins/download.ts
@@ -16,7 +16,10 @@
        method: 'get',
        url: url,
        responseType: 'blob',
        headers: { Authorization: 'Bearer ' + getToken() }
        headers: {
          Authorization: 'Bearer ' + getToken(),
          clientid: import.meta.env.VITE_APP_CLIENT_ID
        }
      });
      const isBlob = blobValidate(res.data);
      if (isBlob) {
@@ -42,7 +45,8 @@
        responseType: 'blob',
        headers: {
          Authorization: 'Bearer ' + getToken(),
          datasource: localStorage.getItem('dataName')
          datasource: localStorage.getItem('dataName'),
          clientid: import.meta.env.VITE_APP_CLIENT_ID
        }
      });
      const isBlob = blobValidate(res.data);
@@ -54,8 +58,8 @@
      }
      downloadLoadingInstance.close();
    } catch (r) {
      console.error(r)
      ElMessage.error('下载文件出现错误,请联系管理员!')
      console.error(r);
      ElMessage.error('下载文件出现错误,请联系管理员!');
      downloadLoadingInstance.close();
    }
  },