代码优化

This commit is contained in:
dqjdda
2019-11-24 11:04:01 +08:00
parent f7d78f4b98
commit b428376ed1
6 changed files with 80 additions and 266 deletions

View File

@@ -37,20 +37,4 @@ export function execution(id) {
})
}
export function downloadJobs(params) {
return request({
url: 'api/jobs/download',
method: 'get',
params,
responseType: 'blob'
})
}
export function downloadLogs(params) {
return request({
url: 'api/jobs/download/log',
method: 'get',
params,
responseType: 'blob'
})
}
export default { del, updateIsPause, execution, add, edit }