智慧农业后台管理页面
guoshilong
2022-08-04 9f1483a17a6d5b2fc43580a54ca96e9fccd3b1af
1
2
3
4
5
6
7
8
9
10
11
12
13
import request from "@/router/axios";
 
/**
 * 文件流返回
 * @param url 接口地址
 */
export const exportBlob = (url) => {
  return request({
    url: url,
    method: 'get',
    responseType: 'blob'
  })
}