import type * as T from './type' import http from '@/utils/http' export type * from './type' const BASE_URL = '/system/menu' /** @desc 查询菜单列表 */ export function listMenu(query?: T.MenuQuery) { return http.get(`${BASE_URL}/tree`, query) } /** @desc 查询菜单详情 */ export function getMenu(id: string) { return http.get(`${BASE_URL}/${id}`) } /** @desc 新增菜单 */ export function addMenu(data: any) { return http.post(`${BASE_URL}`, data) } /** @desc 修改菜单 */ export function updateMenu(data: any, id: string) { return http.put(`${BASE_URL}/${id}`, data) } /** @desc 删除菜单 */ export function deleteMenu(id: string) { return http.del(`${BASE_URL}/${id}`) } /** @desc 清除菜单缓存 */ export function clearMenuCache() { return http.del(`${BASE_URL}/cache`) }