chore: 默认隐藏页脚

This commit is contained in:
xiaoxian521 2023-10-24 21:08:29 +08:00
parent e58d4fa764
commit a0c56e99b7
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
"Grey": false, "Grey": false,
"Weak": false, "Weak": false,
"HideTabs": false, "HideTabs": false,
"HideFooter": false, "HideFooter": true,
"SidebarStatus": true, "SidebarStatus": true,
"EpThemeColor": "#409EFF", "EpThemeColor": "#409EFF",
"ShowLogo": true, "ShowLogo": true,

View File

@ -36,7 +36,7 @@ export function useLayout() {
grey: $config?.Grey ?? false, grey: $config?.Grey ?? false,
weak: $config?.Weak ?? false, weak: $config?.Weak ?? false,
hideTabs: $config?.HideTabs ?? false, hideTabs: $config?.HideTabs ?? false,
hideFooter: $config.HideFooter ?? false, hideFooter: $config.HideFooter ?? true,
showLogo: $config?.ShowLogo ?? true, showLogo: $config?.ShowLogo ?? true,
showModel: $config?.ShowModel ?? "smart", showModel: $config?.ShowModel ?? "smart",
multiTagsCache: $config?.MultiTagsCache ?? false multiTagsCache: $config?.MultiTagsCache ?? false

View File

@ -24,7 +24,7 @@ export const injectResponsiveStorage = (app: App, config: PlatformConfigs) => {
grey: config.Grey ?? false, grey: config.Grey ?? false,
weak: config.Weak ?? false, weak: config.Weak ?? false,
hideTabs: config.HideTabs ?? false, hideTabs: config.HideTabs ?? false,
hideFooter: config.HideFooter ?? false, hideFooter: config.HideFooter ?? true,
showLogo: config.ShowLogo ?? true, showLogo: config.ShowLogo ?? true,
showModel: config.ShowModel ?? "smart", showModel: config.ShowModel ?? "smart",
multiTagsCache: config.MultiTagsCache ?? false multiTagsCache: config.MultiTagsCache ?? false