Files
cunkebao_v3/Touchkebao/src/pages/pc/ckbox/components/NavCommon/index.data.tsx
超级老白兔 16e3ccada8 feat(ui): 优化多个组件的样式和功能
- 调整消息记录宽度和样式
- 更新导航栏算力图标和颜色
- 修改垂直用户列表布局和交互
- 移除侧边栏菜单图标
- 添加调试日志和错误处理
2025-09-16 11:47:36 +08:00

46 lines
956 B
TypeScript

import {
BarChartOutlined,
RobotOutlined,
ThunderboltOutlined,
} from "@ant-design/icons";
// 菜单项接口
export interface MenuItem {
id: string;
title: string;
icon: React.ReactNode;
path?: string;
}
// 菜单列表数据
export const menuList: MenuItem[] = [
{
id: "wechat",
title: "AI智能客服",
icon: <RobotOutlined className="menuIcon" style={{ fontSize: 20 }} />,
path: "/pc/weChat",
},
{
id: "powerCenter",
title: "功能中心",
icon: <BarChartOutlined className="menuIcon" style={{ fontSize: 20 }} />,
path: "/pc/powerCenter",
},
];
// 抽屉菜单配置数据
export const drawerMenuData = {
header: {
logoIcon: "✨",
appName: "触客宝",
appDesc: "AI智能营销系统",
},
footer: {
balanceIcon: <ThunderboltOutlined size={20} />,
balanceLabel: "算力余额",
balanceValue: "9307.423",
},
};
// 导出默认配置
export default drawerMenuData;