WXL
2025-03-20 b8085c12e2f5542210c8a73a997e0b88d39e18b0
src/api/monitor/job.js
@@ -29,8 +29,8 @@
// 修改定时任务调度
export function updateJob(data) {
  return request({
    url: '/monitor/job',
    method: 'put',
    url: '/monitor/job/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除定时任务调度
export function delJob(jobId) {
  return request({
    url: '/monitor/job/' + jobId,
    method: 'delete'
    url: '/monitor/job/remove/' + jobId,
    method: 'get'
  })
}
@@ -51,7 +51,7 @@
  }
  return request({
    url: '/monitor/job/changeStatus',
    method: 'put',
    method: 'post',
    data: data
  })
}
@@ -65,7 +65,7 @@
  }
  return request({
    url: '/monitor/job/run',
    method: 'put',
    method: 'post',
    data: data
  })
}
}