fix: 修复任务类型信息,添加acs任务类型

This commit is contained in:
2023-04-06 20:16:41 +08:00
parent 19656f89f0
commit 6202b514c2
13 changed files with 141 additions and 63 deletions

View File

@@ -37,6 +37,12 @@ export function getTaskType() {
method: 'get'
})
}
export function getAcsTaskType() {
return request({
url: 'api/task/acsTaskType',
method: 'get'
})
}
export function getFinishType() {
return request({
@@ -60,5 +66,6 @@ export default {
operation,
getTaskStatus,
getTaskType,
getAcsTaskType,
getFinishType
}