WXL
2024-05-22 e014c6f2c4123d811353b4fe59d1b489e0587543
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'
  })
}