yxh
yxh
2025-05-23 8022f7036945b75f82f2dfc43055623f81ed98f6
src/api/system/menu.js
@@ -45,8 +45,8 @@
// 修改菜单
export function updateMenu(data) {
  return request({
    url: '/system/menu',
    method: 'put',
    url: '/system/menu/edit',
    method: 'post',
    data: data
  })
}
@@ -54,7 +54,7 @@
// 删除菜单
export function delMenu(menuId) {
  return request({
    url: '/system/menu/' + menuId,
    method: 'delete'
    url: '/system/menu/remove/' + menuId,
    method: 'get',
  })
}