2
0

fix: 菜单固定顶部,路由隐藏排序

This commit is contained in:
TsMask
2024-12-04 17:19:22 +08:00
parent 79354a845c
commit d438b525b2
6 changed files with 15 additions and 82 deletions

View File

@@ -1,23 +1,16 @@
/** Default theme settings */
export const themeSettings: App.Theme.ThemeSetting = {
themeScheme: 'light',
themeColor: '#646cff',
otherColor: { info: '#2080f0', success: '#52c41a', warning: '#faad14', error: '#f5222d' },
themeScheme: "light",
themeColor: "#06B6D4",
otherColor: {info: "#06B6D4", success: "#52c41a", warning: "#faad14", error: "#f5222d"},
isInfoFollowPrimary: true,
layout: { mode: 'horizontal-mix', scrollMode: 'content' },
page: { animate: true, animateMode: 'fade-slide' },
header: { height: 56, breadcrumb: { visible: true, showIcon: true } },
tab: { visible: false, cache: true, height: 44, mode: 'chrome' },
layout: {mode: "horizontal", scrollMode: "content"},
page: {animate: true, animateMode: "fade-slide"},
header: {height: 56, breadcrumb: {visible: true, showIcon: true}},
tab: {visible: false, cache: true, height: 44, mode: "chrome"},
fixedHeaderAndTab: true,
sider: {
inverted: false,
width: 220,
collapsedWidth: 64,
mixWidth: 90,
mixCollapsedWidth: 64,
mixChildMenuWidth: 200
},
footer: { visible: true, fixed: false, height: 36, right: true }
sider: {inverted: false, width: 220, collapsedWidth: 64, mixWidth: 90, mixCollapsedWidth: 64, mixChildMenuWidth: 200},
footer: {visible: true, fixed: false, height: 36, right: true}
};
/**