WXL
2025-08-07 209b2f7b9a0b2abc4043f22bed9b06ab2650ba59
src/api/smartor/schemelibrary.js
@@ -29,8 +29,8 @@
// 修改服务方案库
export function updateSchemelibrary(data) {
  return request({
    url: '/smartor/schemelibrary',
    method: 'put',
    url: '/smartor/schemelibrary/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除服务方案库
export function delSchemelibrary(id) {
  return request({
    url: '/smartor/schemelibrary/' + id,
    method: 'delete'
    url: '/smartor/schemelibrary/remove/' + id,
    method: 'get'
  })
}