Former-commit-id: 4e099a60c2f9ddc2979c20358651ec120c6a2771 [formerly 4e099a60c2f9ddc2979c20358651ec120c6a2771 [formerly 4e099a60c2f9ddc2979c20358651ec120c6a2771 [formerly 4e099a60c2f9ddc2979c20358651ec120c6a2771 [formerly e06d78bb637b3bdb880e41c37eaff9d5511016ee [formerly 11c1b4d7f8ae2b6ca93ea73394b60a4a440bc25d]]]]] Former-commit-id: 3057d0fdbdb8b90697c9e3b34fe416a9b5856139 Former-commit-id: 49e4b668a4a49a2e415e309ff983a15b0e7c6489 Former-commit-id: 935afa11ced9954a284f4a4e381dc0d537230e73 [formerly c0b41cfa1cc46b36085d38cf4786af00b85e2bd4] Former-commit-id: d408621a599e61eb44efe6c3acdfe102548f6975 Former-commit-id: cafc452db55b13366800390a53cc2a37f6cf2fdf Former-commit-id: aa7b982f808ce0edf7aa6e039b5a0fa2a06e35b1 Former-commit-id: fca8c1ef49481487e8c44f6646058d948f54abb6 Former-commit-id: 5c8c0a3575488503f44727002044e1426a8fca99
97 lines
3.1 KiB
Vue
97 lines
3.1 KiB
Vue
<template>
|
|
<div class="layout-main-group" :style="styleLayoutMainGroup" :class="{grayMode: isGrayMode}">
|
|
<div class="layout-main-mask"></div>
|
|
<el-container class="layout-main">
|
|
<!-- 顶栏 -->
|
|
<el-header>
|
|
<div class="logo-group" :style="{width: collapse ? asideWidthCollapse : asideWidth}">
|
|
<img v-if="collapse" :src="`${$assetsPublicPath}static/image/theme/${themeActive.value}/logo/icon-only.png`">
|
|
<img v-else :src="`${$assetsPublicPath}static/image/theme/${themeActive.value}/logo/all.png`">
|
|
</div>
|
|
<div class="toggle-aside-btn" @click="collapse = !collapse">
|
|
<d2-icon name="bars"/>
|
|
</div>
|
|
<d2-layout-main-menu-header/>
|
|
<!-- 顶栏右侧 -->
|
|
<div class="d2-header-right">
|
|
<d2-layout-main-header-github/>
|
|
<d2-layout-main-header-help/>
|
|
<d2-layout-main-header-full-screen/>
|
|
<d2-layout-main-header-theme/>
|
|
<d2-layout-main-header-user/>
|
|
</div>
|
|
</el-header>
|
|
<!-- 下面 主体 -->
|
|
<el-container>
|
|
<!-- 主体 侧边栏 -->
|
|
<el-aside ref="aside" :style="{width: collapse ? asideWidthCollapse : asideWidth}">
|
|
<d2-layout-main-menu-side :collapse="collapse"/>
|
|
</el-aside>
|
|
<!-- 主体 -->
|
|
<el-main>
|
|
<div class="d2-layout-main-header">
|
|
<d2-multiple-page-control></d2-multiple-page-control>
|
|
</div>
|
|
<div class="d2-layout-main-body">
|
|
<transition name="fade-transverse">
|
|
<router-view/>
|
|
</transition>
|
|
</div>
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapMutations } from 'vuex'
|
|
export default {
|
|
name: 'd2-layout-main',
|
|
components: {
|
|
'd2-layout-main-menu-side': () => import('./components/-menu-side'),
|
|
'd2-layout-main-menu-header': () => import('./components/-menu-header'),
|
|
'd2-layout-main-header-full-screen': () => import('./components/-full-screen'),
|
|
'd2-layout-main-header-theme': () => import('./components/-theme'),
|
|
'd2-layout-main-header-user': () => import('./components/-user'),
|
|
'd2-layout-main-header-help': () => import('./components/-help'),
|
|
'd2-layout-main-header-github': () => import('./components/-github')
|
|
},
|
|
data () {
|
|
return {
|
|
collapse: false,
|
|
// [侧边栏宽度] 正常状态
|
|
asideWidth: '200px',
|
|
// [侧边栏宽度] 折叠状态
|
|
asideWidthCollapse: '65px'
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
themeActive: state => state.d2admin.themeActive,
|
|
isGrayMode: state => state.d2admin.isGrayMode
|
|
}),
|
|
styleLayoutMainGroup () {
|
|
return {
|
|
...this.themeActive.backgroundImage ? {
|
|
backgroundImage: `url('${this.$assetsPublicPath}${this.themeActive.backgroundImage}')`
|
|
} : {}
|
|
}
|
|
}
|
|
},
|
|
mounted () {
|
|
// 加载主题
|
|
this.d2adminThemeLoad()
|
|
},
|
|
methods: {
|
|
...mapMutations([
|
|
'd2adminThemeLoad'
|
|
])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
// 注册主题
|
|
@import '~@/assets/style/theme/register.scss';
|
|
</style>
|