WXL
2024-11-09 bf6643a35299f19ae9147864e6f3b6b4670da98a
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'
  })
}