<template>
|
<div :class="classObj" class="app-wrapper">
|
<div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside" />
|
<sidebar class="sidebar-container" />
|
<div class="main-container">
|
<div :class="{'fixed-header':fixedHeader}">
|
<navbar />
|
</div>
|
<div class="clearFixed" />
|
<!-- 清除定位的影响 -->
|
<div class="breadcrumb">
|
<Breadcrumb class="breadcrumb-container" ref="breadcrumb" />
|
</div>
|
<div class="app-main">
|
<app-main ref="main" @triggerCombackBtn="triggerCombackBtn"/>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import { Navbar, Sidebar, AppMain } from './components'
|
import ResizeMixin from './mixin/ResizeHandler'
|
import Breadcrumb from '@/components/Breadcrumb'
|
|
export default {
|
name: 'Layout',
|
components: {
|
Navbar,
|
Sidebar,
|
AppMain,
|
Breadcrumb
|
},
|
mixins: [ResizeMixin],
|
computed: {
|
sidebar() {
|
return this.$store.state.app.sidebar
|
},
|
device() {
|
return this.$store.state.app.device
|
},
|
fixedHeader() {
|
return this.$store.state.settings.fixedHeader
|
},
|
classObj() {
|
return {
|
hideSidebar: !this.sidebar.opened,
|
openSidebar: this.sidebar.opened,
|
withoutAnimation: this.sidebar.withoutAnimation,
|
mobile: this.device === 'mobile'
|
}
|
}
|
},
|
methods: {
|
handleClickOutside() {
|
this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
|
},
|
combackPlan(){
|
this.$refs.main.childMethod()
|
},
|
triggerCombackBtn(){
|
this.$refs.breadcrumb.triggerBtnPlan()
|
}
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
@import "~@/styles/mixin.scss";
|
@import "~@/styles/variables.scss";
|
|
.app-wrapper {
|
@include clearfix;
|
position: relative;
|
height: 100%;
|
width: 100%;
|
&.mobile.openSidebar{
|
position: fixed;
|
top: 0;
|
}
|
.sidebar-container{
|
box-shadow: 0 0 0.857143rem rgba(0,0,0,.12);
|
}
|
.main-container{
|
position: relative;
|
background: #f0f2f5;
|
.clearFixed{
|
height: 50px;
|
}
|
.breadcrumb{
|
position: fixed;
|
left: 0.57rem !important;
|
width: 93.8%;
|
z-index: 999;
|
}
|
.app-main{
|
margin-top: 4vh;
|
}
|
}
|
}
|
.drawer-bg {
|
background: #000;
|
opacity: 0.3;
|
width: 100%;
|
top: 0;
|
height: 100%;
|
position: absolute;
|
z-index: 999;
|
}
|
|
.fixed-header {
|
position: fixed;
|
top: 0;
|
right: 0;
|
z-index: 9;
|
width: calc(100% - #{$sideBarWidth});
|
// width: calc(100% - 100px);
|
transition: width 0.28s;
|
}
|
|
.hideSidebar .fixed-header {
|
width: calc(100% - #{$sideBarWidth})
|
}
|
|
.mobile .fixed-header {
|
width: 100%;
|
}
|
</style>
|