dashboard
repositories
filestore
activity
search
login
main
/
forest_fire_management-vue
林火综合应急信息管理系统前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
初始提交
guoshilong
2023-03-03
504c65bc28f55253b0dca29961479aea092af656
[forest_fire_management-vue.git]
/
src
/
api
/
common.js
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'
})
}