Former-commit-id: 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 1801c7a5909d5415b360a996d4ecab23280b1076 [formerly 209999b1c78ca63880406cb2b633c3560aae0eba [formerly 54edc3b4bd966e2496564198d59ff84fe9ba0b25]]]]] Former-commit-id: ad91a7092b963def0579ecc2011e578e87a8ecd5 Former-commit-id: fb96644ac016362df708618fafef872b7bc2567c Former-commit-id: 257c0b84b8069b3ccb8ddc53e965a974fca01189 [formerly 6954456a39b73136a14f80b0747aea90a694c9a5] Former-commit-id: 99c7481e576afeac70fff4effa7e57f6b17cb79d Former-commit-id: cfddcdd7f760c61e4abe02159a75d484ad6c6e63 Former-commit-id: 06d4e8cf94bd8c24fa167d77f843c93541afb5e6 Former-commit-id: ef6879d28d953c827184c4d5caa6c7fef6b2326f Former-commit-id: 1f1114b417621402ec7d9d3540b305563fb140ec
118 lines
3.7 KiB
Vue
118 lines
3.7 KiB
Vue
<template>
|
|
<div
|
|
class="d2-layout-header-aside-group"
|
|
:style="styleLayoutMainGroup"
|
|
:class="{grayMode: grayActive}">
|
|
<!-- 半透明遮罩 -->
|
|
<div class="d2-layout-header-aside-mask"></div>
|
|
<!-- 主体内容 -->
|
|
<div class="d2-layout-header-aside-content" flex="dir:top">
|
|
<!-- 顶栏 -->
|
|
<div class="d2-theme-header" flex-box="0">
|
|
<div class="logo-group" :style="{width: asideCollapse ? asideWidthCollapse : asideWidth}">
|
|
<img v-if="asideCollapse" :src="`${$baseUrl}image/theme/${themeActiveSetting.name}/logo/icon-only.png`">
|
|
<img v-else :src="`${$baseUrl}image/theme/${themeActiveSetting.name}/logo/all.png`">
|
|
</div>
|
|
<div class="toggle-aside-btn" @click="handleToggleAside">
|
|
<d2-icon name="bars"/>
|
|
</div>
|
|
<d2-menu-header/>
|
|
<!-- 顶栏右侧 -->
|
|
<div class="d2-header-right">
|
|
<!-- 如果你只想在开发环境显示这个按钮请添加 v-if="$env === 'development'" -->
|
|
<d2-header-error-log/>
|
|
<d2-header-help/>
|
|
<d2-header-fullscreen/>
|
|
<d2-header-theme/>
|
|
<d2-header-user/>
|
|
</div>
|
|
</div>
|
|
<!-- 下面 主体 -->
|
|
<div class="d2-theme-container" flex-box="1" flex>
|
|
<!-- 主体 侧边栏 -->
|
|
<div
|
|
flex-box="0"
|
|
ref="aside"
|
|
class="d2-theme-container-aside"
|
|
:style="{width: asideCollapse ? asideWidthCollapse : asideWidth}">
|
|
<d2-menu-side/>
|
|
</div>
|
|
<!-- 主体 -->
|
|
<div class="d2-theme-container-main" flex-box="1" flex="dir:top">
|
|
<div class="d2-theme-container-main-header" flex-box="0">
|
|
<d2-tabs/>
|
|
</div>
|
|
<div class="d2-theme-container-main-body" flex-box="1">
|
|
<transition name="fade-transverse">
|
|
<keep-alive :include="keepAliveInclude">
|
|
<router-view/>
|
|
</keep-alive>
|
|
</transition>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters, mapMutations } from 'vuex'
|
|
export default {
|
|
name: 'd2-layout-header-aside',
|
|
components: {
|
|
'd2-menu-side': () => import('./components/menu-side'),
|
|
'd2-menu-header': () => import('./components/menu-header'),
|
|
'd2-tabs': () => import('./components/tabs'),
|
|
'd2-header-fullscreen': () => import('./components/header-fullscreen'),
|
|
'd2-header-theme': () => import('./components/header-theme'),
|
|
'd2-header-user': () => import('./components/header-user'),
|
|
'd2-header-help': () => import('./components/header-help'),
|
|
'd2-header-error-log': () => import('./components/header-error-log')
|
|
},
|
|
data () {
|
|
return {
|
|
// [侧边栏宽度] 正常状态
|
|
asideWidth: '200px',
|
|
// [侧边栏宽度] 折叠状态
|
|
asideWidthCollapse: '65px'
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState('d2admin', {
|
|
grayActive: state => state.gray.active,
|
|
asideCollapse: state => state.menu.asideCollapse
|
|
}),
|
|
...mapGetters('d2admin', {
|
|
keepAliveInclude: 'page/keepAliveInclude',
|
|
themeActiveSetting: 'theme/activeSetting'
|
|
}),
|
|
/**
|
|
* @description 最外层容器的背景图片样式
|
|
*/
|
|
styleLayoutMainGroup () {
|
|
return {
|
|
...this.themeActiveSetting.backgroundImage ? {
|
|
backgroundImage: `url('${this.$baseUrl}${this.themeActiveSetting.backgroundImage}')`
|
|
} : {}
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
...mapMutations('d2admin/menu', [
|
|
'asideCollapseToggle'
|
|
]),
|
|
/**
|
|
* 接收点击切换侧边栏的按钮
|
|
*/
|
|
handleToggleAside () {
|
|
this.asideCollapseToggle()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
// 注册主题
|
|
@import '~@/assets/style/theme/register.scss';
|
|
</style>
|