WXL
2025-05-23 08c27c1f13c1e7560a39f2fdc38b300d2c0e2af4
src/api/system/category.js
@@ -29,8 +29,8 @@
// 修改问卷分类
export function updateCategory(data) {
  return request({
    url: '/system/category',
    method: 'put',
    url: '/system/category/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除问卷分类
export function delCategory(ID) {
  return request({
    url: '/system/category/' + ID,
    method: 'delete'
    url: '/system/category/remove/' + ID,
    method: 'get'
  })
}