WXL
2025-01-21 1a090a490d8fc93224a0e3ad0fd7fe16c9fe63a8
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'
  })
}