11
WXL
2023-12-17 8c7d6925222fd6f81a9a5869426086635e0c08df
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'
  })
}