diff --git a/locales/en_US.json b/locales/en_US.json index b6969c2..244a4db 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -42,6 +42,7 @@ "themeSetting": "Theme settings", "todos": "Todos", "toggleFullScreen": "Toggle full screen", + "togglContentFullScreen": "Toggle content full screen", "topProgress": "Top progress", "transitionFadeBottom": "Bottom fade", "transitionFadeScale": "Scale fade", diff --git a/locales/zh_CN.json b/locales/zh_CN.json index d25c6ad..5201de0 100644 --- a/locales/zh_CN.json +++ b/locales/zh_CN.json @@ -20,6 +20,7 @@ "backTop": "返回顶部", "toggleSider": "切换侧边栏", "toggleFullScreen": "切换全屏", + "togglContentFullScreen": "切换内容全屏", "notificationsTips": "消息通知", "notifications": "通知", "messages": "消息", diff --git a/src/layouts/components/header/FullScreen.vue b/src/layouts/components/header/FullScreen.vue index dcc5626..50e1304 100644 --- a/src/layouts/components/header/FullScreen.vue +++ b/src/layouts/components/header/FullScreen.vue @@ -18,8 +18,8 @@ useMagicKeys({ {{ $t('app.toggleFullScreen') }} diff --git a/src/layouts/components/tab/ContentFullScreen.vue b/src/layouts/components/tab/ContentFullScreen.vue new file mode 100644 index 0000000..db4c8b4 --- /dev/null +++ b/src/layouts/components/tab/ContentFullScreen.vue @@ -0,0 +1,17 @@ + + + diff --git a/src/layouts/components/tab/TabBar.vue b/src/layouts/components/tab/TabBar.vue index 71579c8..4848098 100644 --- a/src/layouts/components/tab/TabBar.vue +++ b/src/layouts/components/tab/TabBar.vue @@ -2,6 +2,7 @@ import type { RouteLocationNormalized } from 'vue-router' import Reload from './Reload.vue' import DropTabs from './DropTabs.vue' +import ContentFullScreen from './ContentFullScreen.vue' import { useAppStore, useTabStore } from '@/store' import IconRedo from '~icons/icon-park-outline/redo' import IconClose from '~icons/icon-park-outline/close' @@ -135,6 +136,7 @@ function onClickoutside() { diff --git a/src/layouts/leftMenu.layout.vue b/src/layouts/leftMenu.layout.vue index 36ab5c8..d570d2c 100644 --- a/src/layouts/leftMenu.layout.vue +++ b/src/layouts/leftMenu.layout.vue @@ -25,6 +25,7 @@ const appStore = useAppStore() embedded > -
+
@@ -61,9 +62,17 @@ const appStore = useAppStore()
-
-
-
+ + +
-
-
+
-
-
-
+
-
-
+
@@ -38,9 +38,15 @@ const appStore = useAppStore()
-
-
-
+
@@ -48,9 +54,11 @@ const appStore = useAppStore() -
- + {{ appStore.footerText }} diff --git a/src/store/app/index.ts b/src/store/app/index.ts index fb71251..45a0c7b 100644 --- a/src/store/app/index.ts +++ b/src/store/app/index.ts @@ -4,7 +4,7 @@ import { set } from 'radash' import themeConfig from './theme.json' import { local, setLocale } from '@/utils' -type TransitionAnimation = '' | 'fade-slide' | 'fade-bottom' | 'fade-scale' | 'zoom-fade' | 'zoom-out' +export type TransitionAnimation = '' | 'fade-slide' | 'fade-bottom' | 'fade-scale' | 'zoom-fade' | 'zoom-out' export type LayoutMode = 'leftMenu' | 'topMenu' | 'mixMenu' const docEle = ref(document.documentElement) @@ -36,6 +36,7 @@ export const useAppStore = defineStore('app-store', { showSetting: false, transitionAnimation: 'fade-slide' as TransitionAnimation, layoutMode: 'leftMenu' as LayoutMode, + contentFullScreen: false, } }, getters: { @@ -66,6 +67,7 @@ export const useAppStore = defineStore('app-store', { this.showWatermark = false this.transitionAnimation = 'fade-slide' this.layoutMode = 'leftMenu' + this.contentFullScreen = false // 重置所有配色 this.setPrimaryColor(this.primaryColor)