RuoYi
2023-02-28 7fdd20c0543670233c03727532ffbf808be54b84
ruoyi-ui/src/plugins/download.js
@@ -15,9 +15,9 @@
      url: url,
      responseType: 'blob',
      headers: { 'Authorization': 'Bearer ' + getToken() }
    }).then(async (res) => {
      const isLogin = await blobValidate(res.data);
      if (isLogin) {
    }).then((res) => {
      const isBlob = blobValidate(res.data);
      if (isBlob) {
        const blob = new Blob([res.data], { type: 'application/zip' })
        this.saveAs(blob, name)
      } else {