2025-06-25 16:43:40 +08:00
|
|
|
import {
|
|
|
|
DesktopOutlined,
|
|
|
|
UnorderedListOutlined,
|
|
|
|
UserOutlined,
|
|
|
|
} from "@ant-design/icons";
|
2025-06-21 23:26:05 +08:00
|
|
|
|
|
|
|
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"],
|
|
|
|
},
|
2025-06-21 23:26:05 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
export default menuConfig;
|