From 87cee481ad8659470053152c9555756992339c50 Mon Sep 17 00:00:00 2001 From: Leo <98382335+gaoziman@users.noreply.github.com> Date: Tue, 8 Jul 2025 22:49:29 +0800 Subject: [PATCH] =?UTF-8?q?feat(app):=20=E6=9B=B4=E6=96=B0=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E9=A1=B5=E9=9D=A2=E8=BF=87=E6=B8=A1=E5=8A=A8=E7=94=BB?= =?UTF-8?q?=E4=B8=BAzoom-out?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将默认页面过渡动画从fade-slide改为zoom-out - 同步更新重置设置时的动画配置 - 提升页面切换的视觉效果和流畅度 --- src/store/app/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/app/index.ts b/src/store/app/index.ts index 64ab5b5..7791bc0 100644 --- a/src/store/app/index.ts +++ b/src/store/app/index.ts @@ -35,7 +35,7 @@ export const useAppStore = defineStore('app-store', { showBreadcrumb: true, showBreadcrumbIcon: true, showSetting: false, - transitionAnimation: 'fade-slide' as TransitionAnimation, + transitionAnimation: 'zoom-out' as TransitionAnimation, layoutMode: 'leftMenu' as LayoutMode, contentFullScreen: false, } @@ -66,7 +66,7 @@ export const useAppStore = defineStore('app-store', { this.showBreadcrumb = true this.showBreadcrumbIcon = true this.showWatermark = false - this.transitionAnimation = 'fade-slide' + this.transitionAnimation = 'zoom-out' this.layoutMode = 'leftMenu' this.contentFullScreen = false