From 359c7ec47fb4d348476465ff93a4ba13ac69169f Mon Sep 17 00:00:00 2001 From: fengsen <2548667232@qq.com> Date: Fri, 15 Aug 2025 15:46:26 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/settings.ts | 6 +++--- src/store/modules/app.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/settings.ts b/src/settings.ts index 4b62c75..8d08686 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -11,7 +11,7 @@ const setting: DefaultSettings = { /** * 侧边栏主题 深色主题theme-dark,浅色主题theme-light */ - sideTheme: 'theme-dark', + sideTheme: 'theme-light', /** * 是否系统布局配置 */ @@ -20,12 +20,12 @@ const setting: DefaultSettings = { /** * 是否显示顶部导航 */ - topNav: false, + topNav: true, /** * 是否显示 tagsView */ - tagsView: true, + tagsView: false, /** * 是否固定头部 diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index 0205fab..5ccaf75 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -6,7 +6,7 @@ export const useAppStore = defineStore('app', () => { const sidebar = reactive({ opened: sidebarStatus.value ? !!+sidebarStatus.value : true, withoutAnimation: false, - hide: false + hide: true }); const device = ref('desktop'); const size = useStorage<'large' | 'default' | 'small'>('size', 'default');