WXL
2024-07-05 fdf8b9cc7995c8d2022ac512c48a7567f6d2af9a
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'
  })
}