dashboard
repositories
filestore
activity
search
login
main
/
Inspection-Saber
巡检项目后台管理
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
事件添加标题,任务详情查询关联事件
guoshilong
2022-10-10
2947529037e8bb09ab2a304a86de4cfca0144a0f
[Inspection-Saber.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'
})
}