生产管理系统前端 1.修复了左侧菜单激活样式 2.修复了主题,连带解决h1-h6样式问题

This commit is contained in:
2025-10-23 16:32:50 +08:00
parent 4f3beb2568
commit d254790901
3 changed files with 9 additions and 24 deletions

View File

@@ -22,17 +22,6 @@ interface SideBarData {
navMain: NavItem[];
}
// 内部菜单项结构用于LeftSidebar组件
interface MenuItem {
id: string;
label: string;
icon?: React.ReactNode;
children?: {
id: string;
label: string;
path?: string;
}[];
}
interface SideBarOldProps {
children: React.ReactNode;