37 lines
663 B
JavaScript
Raw Normal View History

2025-06-25 16:43:40 +08:00
import {
DesktopOutlined,
FileDoneOutlined,
2025-06-25 16:43:40 +08:00
UnorderedListOutlined,
UserOutlined,
} from "@ant-design/icons";
import { lazy } from "react";
const menuConfig = [
{
path: "/user/reserve",
label: "设备预约",
icon: DesktopOutlined,
roles: ["USER"],
},
2025-06-24 20:08:52 +08:00
{
path: "/user/my-reservation",
label: "我的预约",
icon: UnorderedListOutlined,
roles: ["USER"],
},
2025-06-25 16:43:40 +08:00
{
path: "/user/userdetail",
label: "个人信息",
icon: UserOutlined,
roles: ["USER"],
},
{
path: "/leader/approval",
label: "预约审批",
icon: FileDoneOutlined,
roles: ["LEADER"],
},
];
export default menuConfig;