11
WXL
2024-01-07 8324c778ee797ea5a844614c47d93bdacf3ffeab
src/api/monitor/jobLog.js
@@ -12,8 +12,8 @@
// 删除调度日志
export function delJobLog(jobLogId) {
  return request({
    url: '/monitor/jobLog/' + jobLogId,
    method: 'delete'
    url: '/monitor/jobLog/remove/' + jobLogId,
    method: 'get'
  })
}
@@ -21,7 +21,7 @@
export function cleanJobLog() {
  return request({
    url: '/monitor/jobLog/clean',
    method: 'delete'
    method: 'get'
  })
}