dashboard
repositories
filestore
activity
search
login
main
/
srs-police-web
上饶市警务平台后台管理前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
前端初版
zengh
2022-11-14
c536b6fa4c58f84667cf99e933a3cc49ee5e0413
[srs-police-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'
})
}