dashboard
repositories
filestore
activity
search
login
main
/
hbsl_web
湖北武汉水利工程管理后台前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
首次提交
zhongrj
2023-03-27
b49cb902546b7a40864b803da5f6958ab239e64f
[hbsl_web.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'
})
}