WXL
2025-03-20 d9a95a7d732c3d29e7a7b8cb3e1b004d4d17b63f
src/api/smartor/svycategory.js
@@ -29,8 +29,8 @@
// 修改问卷分类
export function updateSvycategory(data) {
  return request({
    url: '/smartor/svycategory',
    method: 'put',
    url: '/smartor/svycategory/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷分类
export function delSvycategory(id) {
  return request({
    url: '/smartor/svycategory/' + id,
    method: 'delete'
    url: '/smartor/svycategory/remove/' + id,
    method: 'get'
  })
}