任务执行记录列表和操作日志列表接口提交

This commit is contained in:
liangdaliang
2025-03-24 10:46:08 +08:00
parent b4c89d3b9a
commit 33bf583dab
4 changed files with 54 additions and 0 deletions

View File

@@ -18,6 +18,24 @@ export function getTask(id) {
})
}
// 查询定时任务执行记录列表
export function taskResultListByTaskId(query) {
return request({
url: '/test/task/taskResultListByTaskId',
method: 'get',
params: query
})
}
// 查询定时任务操作记录列表
export function taskLogListByTaskId(query) {
return request({
url: '/test/task/taskLogListByTaskId',
method: 'get',
params: query
})
}
// 新增用例
export function addTask(data) {
return request({