mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
feat: add content full screen
This commit is contained in:
parent
309d723e43
commit
23afe39c65
@ -42,6 +42,7 @@
|
|||||||
"themeSetting": "Theme settings",
|
"themeSetting": "Theme settings",
|
||||||
"todos": "Todos",
|
"todos": "Todos",
|
||||||
"toggleFullScreen": "Toggle full screen",
|
"toggleFullScreen": "Toggle full screen",
|
||||||
|
"togglContentFullScreen": "Toggle content full screen",
|
||||||
"topProgress": "Top progress",
|
"topProgress": "Top progress",
|
||||||
"transitionFadeBottom": "Bottom fade",
|
"transitionFadeBottom": "Bottom fade",
|
||||||
"transitionFadeScale": "Scale fade",
|
"transitionFadeScale": "Scale fade",
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
"backTop": "返回顶部",
|
"backTop": "返回顶部",
|
||||||
"toggleSider": "切换侧边栏",
|
"toggleSider": "切换侧边栏",
|
||||||
"toggleFullScreen": "切换全屏",
|
"toggleFullScreen": "切换全屏",
|
||||||
|
"togglContentFullScreen": "切换内容全屏",
|
||||||
"notificationsTips": "消息通知",
|
"notificationsTips": "消息通知",
|
||||||
"notifications": "通知",
|
"notifications": "通知",
|
||||||
"messages": "消息",
|
"messages": "消息",
|
||||||
|
@ -18,8 +18,8 @@ useMagicKeys({
|
|||||||
<n-tooltip placement="bottom" trigger="hover">
|
<n-tooltip placement="bottom" trigger="hover">
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
<CommonWrapper @click="appStore.toggleFullScreen">
|
<CommonWrapper @click="appStore.toggleFullScreen">
|
||||||
<icon-park-outline-off-screen-two v-if="appStore.fullScreen" />
|
<icon-park-outline-off-screen v-if="appStore.fullScreen" />
|
||||||
<icon-park-outline-full-screen-two v-else />
|
<icon-park-outline-full-screen v-else />
|
||||||
</CommonWrapper>
|
</CommonWrapper>
|
||||||
</template>
|
</template>
|
||||||
<span>{{ $t('app.toggleFullScreen') }}</span>
|
<span>{{ $t('app.toggleFullScreen') }}</span>
|
||||||
|
17
src/layouts/components/tab/ContentFullScreen.vue
Normal file
17
src/layouts/components/tab/ContentFullScreen.vue
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { useAppStore } from '@/store'
|
||||||
|
|
||||||
|
const appStore = useAppStore()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<n-tooltip placement="bottom" trigger="hover">
|
||||||
|
<template #trigger>
|
||||||
|
<CommonWrapper @click="appStore.contentFullScreen = !appStore.contentFullScreen">
|
||||||
|
<icon-park-outline-off-screen-one v-if="appStore.contentFullScreen" />
|
||||||
|
<icon-park-outline-full-screen-one v-else />
|
||||||
|
</CommonWrapper>
|
||||||
|
</template>
|
||||||
|
<span>{{ $t('app.togglContentFullScreen') }}</span>
|
||||||
|
</n-tooltip>
|
||||||
|
</template>
|
@ -2,6 +2,7 @@
|
|||||||
import type { RouteLocationNormalized } from 'vue-router'
|
import type { RouteLocationNormalized } from 'vue-router'
|
||||||
import Reload from './Reload.vue'
|
import Reload from './Reload.vue'
|
||||||
import DropTabs from './DropTabs.vue'
|
import DropTabs from './DropTabs.vue'
|
||||||
|
import ContentFullScreen from './ContentFullScreen.vue'
|
||||||
import { useAppStore, useTabStore } from '@/store'
|
import { useAppStore, useTabStore } from '@/store'
|
||||||
import IconRedo from '~icons/icon-park-outline/redo'
|
import IconRedo from '~icons/icon-park-outline/redo'
|
||||||
import IconClose from '~icons/icon-park-outline/close'
|
import IconClose from '~icons/icon-park-outline/close'
|
||||||
@ -135,6 +136,7 @@ function onClickoutside() {
|
|||||||
</n-tab>
|
</n-tab>
|
||||||
<template #suffix>
|
<template #suffix>
|
||||||
<Reload />
|
<Reload />
|
||||||
|
<ContentFullScreen />
|
||||||
<DropTabs />
|
<DropTabs />
|
||||||
</template>
|
</template>
|
||||||
</n-tabs>
|
</n-tabs>
|
||||||
|
@ -25,6 +25,7 @@ const appStore = useAppStore()
|
|||||||
embedded
|
embedded
|
||||||
>
|
>
|
||||||
<n-layout-sider
|
<n-layout-sider
|
||||||
|
v-if="!appStore.contentFullScreen"
|
||||||
bordered
|
bordered
|
||||||
:collapsed="appStore.collapsed"
|
:collapsed="appStore.collapsed"
|
||||||
collapse-mode="width"
|
collapse-mode="width"
|
||||||
@ -44,7 +45,7 @@ const appStore = useAppStore()
|
|||||||
:native-scrollbar="false"
|
:native-scrollbar="false"
|
||||||
>
|
>
|
||||||
<n-layout-header bordered position="absolute" class="z-1">
|
<n-layout-header bordered position="absolute" class="z-1">
|
||||||
<div class="h-60px flex-y-center justify-between">
|
<div v-if="!appStore.contentFullScreen" class="h-60px flex-y-center justify-between">
|
||||||
<div class="flex-y-center h-full">
|
<div class="flex-y-center h-full">
|
||||||
<CollapaseButton />
|
<CollapaseButton />
|
||||||
<Breadcrumb />
|
<Breadcrumb />
|
||||||
@ -61,9 +62,17 @@ const appStore = useAppStore()
|
|||||||
</div>
|
</div>
|
||||||
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
||||||
</n-layout-header>
|
</n-layout-header>
|
||||||
<div class="flex-1 p-16px flex flex-col">
|
<!-- 121 = 16 + 45 + 60 45是面包屑高度 60是标签栏高度 -->
|
||||||
<div class="h-60px" />
|
<!-- 56 = 16 + 40 40是页脚高度 -->
|
||||||
<div v-if="appStore.showTabs" class="h-45px" />
|
<div
|
||||||
|
class="flex-1 p-16px flex flex-col"
|
||||||
|
:class="{
|
||||||
|
'p-t-121px': appStore.showTabs,
|
||||||
|
'p-b-56px': appStore.showFooter && !appStore.contentFullScreen,
|
||||||
|
'p-t-76px': !appStore.showTabs,
|
||||||
|
'p-t-61px': appStore.contentFullScreen,
|
||||||
|
}"
|
||||||
|
>
|
||||||
<router-view v-slot="{ Component, route }" class="flex-1">
|
<router-view v-slot="{ Component, route }" class="flex-1">
|
||||||
<transition
|
<transition
|
||||||
:name="appStore.transitionAnimation"
|
:name="appStore.transitionAnimation"
|
||||||
@ -78,10 +87,9 @@ const appStore = useAppStore()
|
|||||||
</keep-alive>
|
</keep-alive>
|
||||||
</transition>
|
</transition>
|
||||||
</router-view>
|
</router-view>
|
||||||
<div v-if="appStore.showFooter" class="h-40px" />
|
|
||||||
</div>
|
</div>
|
||||||
<n-layout-footer
|
<n-layout-footer
|
||||||
v-if="appStore.showFooter"
|
v-if="appStore.showFooter && !appStore.contentFullScreen"
|
||||||
bordered
|
bordered
|
||||||
position="absolute"
|
position="absolute"
|
||||||
class="h-40px flex-center"
|
class="h-40px flex-center"
|
||||||
|
@ -73,6 +73,7 @@ function updateTopMenu(key: string) {
|
|||||||
embedded
|
embedded
|
||||||
>
|
>
|
||||||
<n-layout-sider
|
<n-layout-sider
|
||||||
|
v-if="!appStore.contentFullScreen"
|
||||||
bordered
|
bordered
|
||||||
:collapsed="appStore.collapsed"
|
:collapsed="appStore.collapsed"
|
||||||
collapse-mode="width"
|
collapse-mode="width"
|
||||||
@ -99,7 +100,7 @@ function updateTopMenu(key: string) {
|
|||||||
:native-scrollbar="false"
|
:native-scrollbar="false"
|
||||||
>
|
>
|
||||||
<n-layout-header bordered position="absolute" class="z-1">
|
<n-layout-header bordered position="absolute" class="z-1">
|
||||||
<div class="h-60px flex-y-center justify-between">
|
<div v-if="!appStore.contentFullScreen" class="h-60px flex-y-center justify-between">
|
||||||
<CollapaseButton />
|
<CollapaseButton />
|
||||||
<n-menu
|
<n-menu
|
||||||
ref="menuInstRef"
|
ref="menuInstRef"
|
||||||
@ -121,9 +122,15 @@ function updateTopMenu(key: string) {
|
|||||||
</div>
|
</div>
|
||||||
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
||||||
</n-layout-header>
|
</n-layout-header>
|
||||||
<div class="flex-1 p-16px flex flex-col">
|
<div
|
||||||
<div class="h-60px" />
|
class="flex-1 p-16px flex flex-col"
|
||||||
<div v-if="appStore.showTabs" class="h-45px" />
|
:class="{
|
||||||
|
'p-t-121px': appStore.showTabs,
|
||||||
|
'p-b-56px': appStore.showFooter && !appStore.contentFullScreen,
|
||||||
|
'p-t-76px': !appStore.showTabs,
|
||||||
|
'p-t-61px': appStore.contentFullScreen,
|
||||||
|
}"
|
||||||
|
>
|
||||||
<router-view v-slot="{ Component, route }" class="flex-1">
|
<router-view v-slot="{ Component, route }" class="flex-1">
|
||||||
<transition
|
<transition
|
||||||
:name="appStore.transitionAnimation"
|
:name="appStore.transitionAnimation"
|
||||||
@ -138,10 +145,9 @@ function updateTopMenu(key: string) {
|
|||||||
</keep-alive>
|
</keep-alive>
|
||||||
</transition>
|
</transition>
|
||||||
</router-view>
|
</router-view>
|
||||||
<div v-if="appStore.showFooter" class="h-40px" />
|
|
||||||
</div>
|
</div>
|
||||||
<n-layout-footer
|
<n-layout-footer
|
||||||
v-if="appStore.showFooter"
|
v-if="appStore.showFooter && !appStore.contentFullScreen"
|
||||||
bordered
|
bordered
|
||||||
position="absolute"
|
position="absolute"
|
||||||
class="h-40px flex-center"
|
class="h-40px flex-center"
|
||||||
|
@ -23,7 +23,7 @@ const appStore = useAppStore()
|
|||||||
embedded :native-scrollbar="false"
|
embedded :native-scrollbar="false"
|
||||||
>
|
>
|
||||||
<n-layout-header bordered position="absolute" class="z-1">
|
<n-layout-header bordered position="absolute" class="z-1">
|
||||||
<div class="h-60px flex-y-center justify-between shrink-0">
|
<div v-if="!appStore.contentFullScreen" class="h-60px flex-y-center justify-between shrink-0">
|
||||||
<Logo v-if="appStore.showLogo" />
|
<Logo v-if="appStore.showLogo" />
|
||||||
<Menu mode="horizontal" responsive />
|
<Menu mode="horizontal" responsive />
|
||||||
<div class="flex-y-center gap-1 h-full p-x-xl">
|
<div class="flex-y-center gap-1 h-full p-x-xl">
|
||||||
@ -38,9 +38,15 @@ const appStore = useAppStore()
|
|||||||
</div>
|
</div>
|
||||||
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
<TabBar v-if="appStore.showTabs" class="h-45px" />
|
||||||
</n-layout-header>
|
</n-layout-header>
|
||||||
<div class="flex-1 p-16px flex flex-col">
|
<div
|
||||||
<div class="h-60px" />
|
class="flex-1 p-16px flex flex-col"
|
||||||
<div v-if="appStore.showTabs" class="h-45px" />
|
:class="{
|
||||||
|
'p-t-121px': appStore.showTabs,
|
||||||
|
'p-b-56px': appStore.showFooter && !appStore.contentFullScreen,
|
||||||
|
'p-t-76px': !appStore.showTabs,
|
||||||
|
'p-t-61px': appStore.contentFullScreen,
|
||||||
|
}"
|
||||||
|
>
|
||||||
<router-view v-slot="{ Component, route }" class="flex-1">
|
<router-view v-slot="{ Component, route }" class="flex-1">
|
||||||
<transition :name="appStore.transitionAnimation" mode="out-in">
|
<transition :name="appStore.transitionAnimation" mode="out-in">
|
||||||
<keep-alive :include="routeStore.cacheRoutes">
|
<keep-alive :include="routeStore.cacheRoutes">
|
||||||
@ -48,9 +54,11 @@ const appStore = useAppStore()
|
|||||||
</keep-alive>
|
</keep-alive>
|
||||||
</transition>
|
</transition>
|
||||||
</router-view>
|
</router-view>
|
||||||
<div v-if="appStore.showFooter" class="h-40px" />
|
|
||||||
</div>
|
</div>
|
||||||
<n-layout-footer v-if="appStore.showFooter" bordered position="absolute" class="h-40px flex-center">
|
<n-layout-footer
|
||||||
|
v-if="appStore.showFooter && !appStore.contentFullScreen"
|
||||||
|
bordered position="absolute" class="h-40px flex-center"
|
||||||
|
>
|
||||||
{{ appStore.footerText }}
|
{{ appStore.footerText }}
|
||||||
</n-layout-footer>
|
</n-layout-footer>
|
||||||
<BackTop />
|
<BackTop />
|
||||||
|
@ -4,7 +4,7 @@ import { set } from 'radash'
|
|||||||
import themeConfig from './theme.json'
|
import themeConfig from './theme.json'
|
||||||
import { local, setLocale } from '@/utils'
|
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'
|
export type LayoutMode = 'leftMenu' | 'topMenu' | 'mixMenu'
|
||||||
|
|
||||||
const docEle = ref(document.documentElement)
|
const docEle = ref(document.documentElement)
|
||||||
@ -36,6 +36,7 @@ export const useAppStore = defineStore('app-store', {
|
|||||||
showSetting: false,
|
showSetting: false,
|
||||||
transitionAnimation: 'fade-slide' as TransitionAnimation,
|
transitionAnimation: 'fade-slide' as TransitionAnimation,
|
||||||
layoutMode: 'leftMenu' as LayoutMode,
|
layoutMode: 'leftMenu' as LayoutMode,
|
||||||
|
contentFullScreen: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getters: {
|
getters: {
|
||||||
@ -66,6 +67,7 @@ export const useAppStore = defineStore('app-store', {
|
|||||||
this.showWatermark = false
|
this.showWatermark = false
|
||||||
this.transitionAnimation = 'fade-slide'
|
this.transitionAnimation = 'fade-slide'
|
||||||
this.layoutMode = 'leftMenu'
|
this.layoutMode = 'leftMenu'
|
||||||
|
this.contentFullScreen = false
|
||||||
|
|
||||||
// 重置所有配色
|
// 重置所有配色
|
||||||
this.setPrimaryColor(this.primaryColor)
|
this.setPrimaryColor(this.primaryColor)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user