|
|
|
@ -1,25 +1,32 @@
|
|
|
|
|
<script lang="ts" setup> |
|
|
|
|
import { Layout } from 'ant-design-vue' |
|
|
|
|
import { computed, unref } from 'vue' |
|
|
|
|
import { Layout } from 'ant-design-vue' |
|
|
|
|
|
|
|
|
|
import LayoutContent from './content/index.vue' |
|
|
|
|
import LayoutHeader from './header/index.vue' |
|
|
|
|
import LayoutMultipleHeader from './header/MultipleHeader.vue' |
|
|
|
|
import LayoutContent from './content/index.vue' |
|
|
|
|
import LayoutSideBar from './sider/index.vue' |
|
|
|
|
import LayoutMultipleHeader from './header/MultipleHeader.vue' |
|
|
|
|
import { createAsyncComponent } from '@/utils/factory/createAsyncComponent' |
|
|
|
|
|
|
|
|
|
import { useHeaderSetting } from '@/hooks/setting/useHeaderSetting' |
|
|
|
|
import { useMenuSetting } from '@/hooks/setting/useMenuSetting' |
|
|
|
|
import { useAppInject } from '@/hooks/web/useAppInject' |
|
|
|
|
import { useDesign } from '@/hooks/web/useDesign' |
|
|
|
|
import { useLockPage } from '@/hooks/web/useLockPage' |
|
|
|
|
import { createAsyncComponent } from '@/utils/factory/createAsyncComponent' |
|
|
|
|
|
|
|
|
|
import { useAppInject } from '@/hooks/web/useAppInject' |
|
|
|
|
|
|
|
|
|
import { useMultipleTabSetting } from '@/hooks/setting/useMultipleTabSetting' |
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'DefaultLayout' }) |
|
|
|
|
|
|
|
|
|
const LayoutFeatures = createAsyncComponent(() => import('@/layouts/default/feature/index.vue')) |
|
|
|
|
const LayoutFooter = createAsyncComponent(() => import('@/layouts/default/footer/index.vue')) |
|
|
|
|
|
|
|
|
|
const { prefixCls } = useDesign('default-layout') |
|
|
|
|
const { getIsMobile } = useAppInject() |
|
|
|
|
const { getShowFullHeaderRef } = useHeaderSetting() |
|
|
|
|
const { getShowSidebar, getIsMixSidebar, getShowMenu } = useMenuSetting() |
|
|
|
|
const { getAutoCollapse } = useMultipleTabSetting() |
|
|
|
|
|
|
|
|
|
// Create a lock screen monitor |
|
|
|
|
const lockEvents = useLockPage() |
|
|
|
@ -29,17 +36,20 @@ const layoutClass = computed(() => {
|
|
|
|
|
if (unref(getIsMixSidebar) || unref(getShowMenu)) |
|
|
|
|
cls.push('ant-layout-has-sider') |
|
|
|
|
|
|
|
|
|
if (!unref(getShowMenu) && unref(getAutoCollapse)) |
|
|
|
|
cls.push('ant-layout-auto-collapse-tabs') |
|
|
|
|
|
|
|
|
|
return cls |
|
|
|
|
}) |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<Layout class="min-h-full w-full flex flex-col" v-bind="lockEvents"> |
|
|
|
|
<Layout :class="prefixCls" v-bind="lockEvents"> |
|
|
|
|
<LayoutFeatures /> |
|
|
|
|
<LayoutHeader v-if="getShowFullHeaderRef" fixed /> |
|
|
|
|
<Layout :class="[layoutClass]"> |
|
|
|
|
<Layout :class="[layoutClass, `${prefixCls}-out`]"> |
|
|
|
|
<LayoutSideBar v-if="getShowSidebar || getIsMobile" /> |
|
|
|
|
<Layout class="ml-0.25 w-full"> |
|
|
|
|
<Layout :class="`${prefixCls}-main`"> |
|
|
|
|
<LayoutMultipleHeader /> |
|
|
|
|
<LayoutContent /> |
|
|
|
|
<LayoutFooter /> |
|
|
|
@ -47,3 +57,34 @@ const layoutClass = computed(() => {
|
|
|
|
|
</Layout> |
|
|
|
|
</Layout> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<style lang="less"> |
|
|
|
|
@prefix-cls: ~'@{namespace}-default-layout'; |
|
|
|
|
|
|
|
|
|
.@{prefix-cls} { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
width: 100%; |
|
|
|
|
min-height: 100%; |
|
|
|
|
background-color: @content-bg; |
|
|
|
|
|
|
|
|
|
> .ant-layout { |
|
|
|
|
min-height: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&-main { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-left: 1px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.@{prefix-cls}-out { |
|
|
|
|
&.ant-layout-has-sider { |
|
|
|
|
.@{prefix-cls} { |
|
|
|
|
&-main { |
|
|
|
|
margin-left: 1px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|