zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import http from "@/api";
 
/**
 * @name 菜单管理模块
 */
// 获取菜单列表
export const MenuAll = () => {
  return http.post(`/User/Menu/All`);
};
 
//获取当前角色的导航菜单
export const RoleMentAll = (id: any) => {
  return http.post(`/Role/RoleMentAll`, { id });
};