| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- <script lang="ts" setup name="Layout">
- import hotkeys from 'hotkeys-js'
- import IframeView from './components/views/iframe.vue'
- import LinkView from './components/views/link.vue'
- import Header from './components/Header/index.vue'
- import MainSidebar from './components/MainSidebar/index.vue'
- import SubSidebar from './components/SubSidebar/index.vue'
- import Topbar from './components/Topbar/index.vue'
- import Search from './components/Search/index.vue'
- import AppSetting from './components/AppSetting/index.vue'
- import HotkeysIntro from './components/HotkeysIntro/index.vue'
- import useSettingsStore from '@/store/modules/settings'
- import useKeepAliveStore from '@/store/modules/keepAlive'
- import useMenuStore from '@/store/modules/menu'
- const routeInfo = useRoute()
- const settingsStore = useSettingsStore()
- const keepAliveStore = useKeepAliveStore()
- const menuStore = useMenuStore()
- const isIframe = computed(() => !!routeInfo.meta.iframe)
- const isLink = computed(() => !!routeInfo.meta.link)
- useWatermark()
- watch(() => settingsStore.settings.menu.subMenuCollapse, (val) => {
- if (settingsStore.mode === 'mobile') {
- if (!val) {
- document.body.classList.add('hidden')
- }
- else {
- document.body.classList.remove('hidden')
- }
- }
- })
- watch(() => routeInfo.path, () => {
- if (settingsStore.mode === 'mobile') {
- settingsStore.$patch((state) => {
- state.settings.menu.subMenuCollapse = true
- })
- }
- })
- onMounted(() => {
- hotkeys('f5', (e) => {
- if (settingsStore.settings.toolbar.enablePageReload) {
- e.preventDefault()
- useMainPage().reload()
- }
- })
- hotkeys('alt+`', (e) => {
- if (settingsStore.settings.menu.enableHotkeys) {
- e.preventDefault()
- useMenu().switchTo(menuStore.actived + 1 < menuStore.allMenus.length ? menuStore.actived + 1 : 0)
- }
- })
- hotkeys('alt+up,alt+down', (e, handle) => {
- e.preventDefault()
- switch (handle.key) {
- case 'alt+up':
- useMainPage().maximize(true)
- break
- case 'alt+down':
- useMainPage().maximize(false)
- break
- }
- })
- })
- onUnmounted(() => {
- hotkeys.unbind('f5')
- hotkeys.unbind('alt+`')
- hotkeys.unbind('alt+up,alt+down')
- })
- </script>
- <template>
- <div class="layout">
- <div id="app-main" :class="{ 'main-page-maximize': settingsStore.mainPageMaximizeStatus }">
- <Header />
- <div class="wrapper">
- <div class="sidebar-container" :class="{ show: settingsStore.mode === 'mobile' && !settingsStore.settings.menu.subMenuCollapse }">
- <MainSidebar />
- <SubSidebar />
- </div>
- <div class="sidebar-mask" :class="{ show: settingsStore.mode === 'mobile' && !settingsStore.settings.menu.subMenuCollapse }" @click="settingsStore.toggleSidebarCollapse()" />
- <div class="main-container" :style="{ 'padding-bottom': routeInfo.meta.paddingBottom } as any">
- <Topbar />
- <div class="main">
- <div v-show="settingsStore.mainPageMaximizeStatus" class="exit-main-page-maximize" @click="settingsStore.setMainPageMaximize()">
- <el-icon>
- <svg-icon name="i-ri:logout-box-line" />
- </el-icon>
- </div>
- <router-view v-slot="{ Component, route }">
- <transition name="main" mode="out-in" appear>
- <keep-alive :include="keepAliveStore.list">
- <component :is="Component" v-show="!(isIframe || isLink)" :key="route.fullPath" />
- </keep-alive>
- </transition>
- </router-view>
- <IframeView v-show="isIframe && !isLink" />
- <LinkView v-if="isLink" />
- </div>
- <Copyright />
- </div>
- </div>
- <el-backtop :right="20" :bottom="20" title="回到顶部" />
- </div>
- <Search />
- <AppSetting />
- <HotkeysIntro />
- </div>
- </template>
- <style lang="scss" scoped>
- [data-app-width-mode="adaption"] {
- #app-main {
- width: 100%;
- }
- }
- [data-app-width-mode="adaption-min-width"] {
- #app-main {
- width: max(var(--g-app-width), 100%);
- }
- }
- [data-app-width-mode="center"] {
- #app-main {
- width: var(--g-app-width);
- }
- }
- [data-app-width-mode="center-max-width"] {
- #app-main {
- width: min(var(--g-app-width), 100%);
- }
- }
- [data-mode="mobile"] {
- #app-main {
- width: 100%;
- }
- .sidebar-container {
- transform: translateX(calc((var(--g-main-sidebar-width) + var(--g-sub-sidebar-width)) * -1));
- &.show {
- transform: translateX(0);
- }
- }
- .main-container {
- margin-left: 0 !important;
- }
- &[data-menu-mode="single"] {
- .sidebar-container {
- transform: translateX(calc(var(--g-sub-sidebar-width) * -1));
- &.show {
- transform: translateX(0);
- }
- }
- }
- }
- .layout {
- height: 100%;
- }
- #app-main {
- height: 100%;
- margin: 0 auto;
- transition: var(--el-transition-all);
- // 当前标签页全屏
- &.main-page-maximize {
- header,
- .sidebar-container {
- display: none;
- }
- .wrapper {
- padding-top: 0;
- .main-container {
- margin-left: 0;
- .topbar-container {
- display: none;
- }
- .main {
- margin: 0;
- }
- }
- }
- :deep([data-fixed-calc-width]) {
- width: 100%;
- transform: translateX(-50%);
- }
- }
- }
- .wrapper {
- position: relative;
- width: 100%;
- height: 100%;
- transition: padding-top 0.3s;
- .sidebar-container {
- position: fixed;
- z-index: 1010;
- top: 0;
- bottom: 0;
- display: flex;
- width: calc(var(--g-main-sidebar-actual-width) + var(--g-sub-sidebar-actual-width));
- box-shadow: -1px 0 0 0 var(--g-border-color);
- transition: transform 0.3s, var(--el-transition-box-shadow), top 0.3s;
- }
- .sidebar-mask {
- position: fixed;
- z-index: 1000;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-image: radial-gradient(transparent 1px, rgb(0 0 0 / 30%) 1px);
- background-size: 4px 4px;
- backdrop-filter: saturate(50%) blur(4px);
- transition: all 0.2s;
- opacity: 0;
- visibility: hidden;
- &.show {
- opacity: 1;
- visibility: visible;
- }
- }
- .main-sidebar-container:not(.main-sidebar-leave-active) + .sub-sidebar-container {
- left: var(--g-main-sidebar-width);
- }
- .main-container {
- display: flex;
- flex-direction: column;
- min-height: 100%;
- margin-left: calc(var(--g-main-sidebar-actual-width) + var(--g-sub-sidebar-actual-width));
- background-color: var(--g-main-bg);
- box-shadow: -1px 0 0 0 var(--g-border-color), 1px 0 0 0 var(--g-border-color);
- transition: margin-left 0.3s, background-color 0.3s, var(--el-transition-box-shadow);
- .main {
- height: 100%;
- flex: auto;
- position: relative;
- overflow: hidden;
- transition: 0.3s;
- .exit-main-page-maximize {
- position: fixed;
- z-index: 1000;
- right: -40px;
- top: -40px;
- width: 80px;
- height: 80px;
- border-radius: 50%;
- cursor: pointer;
- background-color: var(--el-overlay-color-lighter);
- color: #eee;
- transition: background-color 0.3s, var(--el-transition-color);
- &:hover {
- background-color: var(--el-overlay-color-light);
- color: #fff;
- }
- .el-icon {
- position: absolute;
- bottom: 16px;
- left: 16px;
- }
- }
- }
- .topbar-container.has-tabbar + .main {
- margin: var(--g-tabbar-height) 0 0;
- }
- .topbar-container.has-toolbar + .main {
- margin: var(--g-toolbar-height) 0 0;
- }
- .topbar-container.has-tabbar.has-toolbar + .main {
- margin: calc(var(--g-tabbar-height) + var(--g-toolbar-height)) 0 0;
- }
- }
- }
- header:not(.header-leave-active) + .wrapper {
- padding-top: var(--g-header-height);
- .sidebar-container {
- top: var(--g-header-height);
- :deep(.sidebar-logo) {
- display: none;
- }
- :deep(.el-menu) {
- padding-top: 0;
- }
- }
- .main-container {
- .topbar-container {
- top: var(--g-header-height);
- :deep(.tools) {
- display: none;
- }
- }
- }
- }
- // 主内容区动画
- .main-enter-active {
- transition: 0.2s;
- }
- .main-leave-active {
- transition: 0.15s;
- }
- .main-enter-from {
- opacity: 0;
- margin-left: -20px;
- }
- .main-leave-to {
- opacity: 0;
- margin-left: 20px;
- }
- </style>
|