WXL
2024-06-20 8d2e62da290ba8c40101f282a60efcdb29b22cd2
src/api/smartor/schemeplan.js
@@ -29,8 +29,8 @@
// 修改管理计划
export function updateSchemeplan(data) {
  return request({
    url: '/smartor/schemeplan',
    method: 'put',
    url: '/smartor/schemeplan/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除管理计划
export function delSchemeplan(id) {
  return request({
    url: '/smartor/schemeplan/' + id,
    method: 'delete'
    url: '/smartor/schemeplan/remove/' + id,
    method: 'get'
  })
}