66 lines
2.2 KiB
Vue
66 lines
2.2 KiB
Vue
<template>
|
|
<n-layout class="h-full" has-sider>
|
|
<global-sider v-if="theme.isVerticalNav" :z-index="2" />
|
|
<global-header v-if="isHorizontalMix" :z-index="2" />
|
|
<div class="flex-1-hidden flex h-full">
|
|
<global-sider v-if="isHorizontalMix" class="sider-margin" :z-index="1" />
|
|
<n-scrollbar
|
|
ref="scrollbar"
|
|
class="h-full"
|
|
:x-scrollable="true"
|
|
:content-class="routeProps.fullPage ? 'h-full' : ''"
|
|
>
|
|
<div
|
|
class="inline-flex-col-stretch w-full"
|
|
:class="[{ 'content-padding': isHorizontalMix }, routeProps.fullPage ? 'h-full' : 'min-h-100vh']"
|
|
>
|
|
<global-header v-if="!isHorizontalMix" :z-index="1" />
|
|
<global-tab :z-index="1" />
|
|
<n-layout-content class="flex-auto" :class="{ 'bg-[#f5f7f9]': !theme.darkMode }">
|
|
<router-view v-slot="{ Component }">
|
|
<keep-alive>
|
|
<component :is="Component" v-if="routeProps.keepAlive" :key="routeProps.name" />
|
|
</keep-alive>
|
|
<component :is="Component" v-if="!routeProps.keepAlive" :key="routeProps.name" />
|
|
</router-view>
|
|
</n-layout-content>
|
|
<global-footer />
|
|
</div>
|
|
</n-scrollbar>
|
|
</div>
|
|
<setting-drawer />
|
|
</n-layout>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { NLayout, NScrollbar, NLayoutContent } from 'naive-ui';
|
|
import { useThemeStore } from '@/store';
|
|
import { GlobalSider, GlobalHeader, GlobalTab, GlobalFooter, SettingDrawer } from './components';
|
|
import { useRouteProps, useScrollBehavior } from '../composables';
|
|
|
|
const theme = useThemeStore();
|
|
const { scrollbar } = useScrollBehavior();
|
|
const routeProps = useRouteProps();
|
|
|
|
const isHorizontalMix = computed(() => theme.navStyle.mode === 'horizontal-mix');
|
|
const headerAndMultiTabHeight = computed(() => {
|
|
const {
|
|
headerStyle: { height: hHeight },
|
|
multiTabStyle: { height: mHeight }
|
|
} = theme;
|
|
return `${hHeight + mHeight}px`;
|
|
});
|
|
</script>
|
|
<style scoped>
|
|
:deep(.n-scrollbar-rail) {
|
|
z-index: 11;
|
|
}
|
|
.sider-margin {
|
|
margin-top: v-bind(headerAndMultiTabHeight);
|
|
}
|
|
.content-padding {
|
|
padding-top: v-bind(headerAndMultiTabHeight);
|
|
}
|
|
</style>
|