feat: 项目初始化。

This commit is contained in:
tianyongbao
2026-04-09 02:11:32 +08:00
commit d7dc3a08be
245 changed files with 13492 additions and 0 deletions

26
src/api/monitor/jobLog.js Normal file
View File

@@ -0,0 +1,26 @@
import request from '@/utils/request'
// 查询调度日志列表
export function listJobLog(query) {
return request({
url: '/monitor/jobLog/list',
method: 'get',
params: query
})
}
// 删除调度日志
export function delJobLog(jobLogId) {
return request({
url: '/monitor/jobLog/' + jobLogId,
method: 'delete'
})
}
// 清空调度日志
export function cleanJobLog() {
return request({
url: '/monitor/jobLog/clean',
method: 'delete'
})
}