WXL
2025-03-20 ffb5cf79a2d5d7603cb97e79bd04f598eceb0352
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'
  })
}