riku
2025-02-28 3d6addd2c0817b30bd328605cb048ca9698742a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Base64 } from 'js-base64';
import { $fysp } from '../index';
 
export default {
  /**
   * 下载数据产品
   */
  downloadProduct(area, type, forceUpdate) {
    return $fysp
      .post(`dataProduct/download?`, area, {
        responseType: 'blob',
        params: { type, forceUpdate }
      })
      .then((res) => {
        // 文档未生成,已启动文档生成后台任务
        if (res.data.type == 'application/json') {
          return false;
        }
        // 文档已存在,返回文件数据流
        else {
          return res.data
          // const name = Base64.decode(res.headers.get('filename'));
          // const url = window.URL.createObjectURL(res.data);
          // const link = document.createElement('a');
          // link.href = url;
          // link.setAttribute('download', name);
          // document.body.appendChild(link);
          // link.click();
          // document.body.removeChild(link);
          // window.URL.revokeObjectURL(url);
        }
      });
  }
};