WXL
2025-03-31 b73b5dd97cbda40d0584f579ed9f65f4fcffe23f
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'
  })
}