WXL
2024-08-02 a9a1a5cf8e6d6677374e9ef7bcddb97877e4eee4
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'
  })
}