11
WXL
2023-11-10 9ee0e9c0cf83ebca413f3512c830014b7b9a5792
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'
  })
}