WXL
2024-12-16 5dc9d1b98ea27422dbea14857dad5c7367eaedfe
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'
  })
}