dashboard
repositories
filestore
activity
search
login
main
/
Inspection-Saber
巡检项目后台管理
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
事件详情事件轨迹维修轨迹添加处理时间;维修派单没有添加备注默认备注为已派单
guoshilong
2022-10-14
e445057b4df5be4a8e64a5f5377efeec154960e4
[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'
})
}