WXL
2024-07-16 cc73ea5320fed8a39e00bfc0fa02810199559122
src/api/smartor/schemecategory.js
@@ -29,8 +29,8 @@
// 修改方案分类
export function updateSchemecategory(data) {
  return request({
    url: '/smartor/schemecategory',
    method: 'put',
    url: '/smartor/schemecategory/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除方案分类
export function delSchemecategory(id) {
  return request({
    url: '/smartor/schemecategory/' + id,
    method: 'delete'
    url: '/smartor/schemecategory/remove/' + id,
    method: 'get'
  })
}