You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.3 KiB
114 lines
2.3 KiB
<template>
|
|
<div :class="classObj" class="app-wrapper">
|
|
<div class="fixed-header">
|
|
<navbar />
|
|
</div>
|
|
<div
|
|
v-if="device === 'mobile' && sidebar.opened"
|
|
class="drawer-bg"
|
|
@click="handleClickOutside"
|
|
/>
|
|
<div class="main-container">
|
|
<div class="home-box">
|
|
<a href="javascript:window.opener=null;window.open('','_self');window.close();" class="text-center">平台首页</a>
|
|
<a href="javascript:void(0);" class="text-center">财务管理</a>
|
|
</div>
|
|
<sidebar class="sidebar-container" />
|
|
<!--菜单-->
|
|
<div class="TagsView">
|
|
<tags-view />
|
|
<!--横向标签-->
|
|
</div>
|
|
<app-main />
|
|
<!--<el-footer height="40px">Copyright © 2021 安瑞集团 All Rights Reserved</el-footer>-->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { AppMain, Navbar, Sidebar, TagsView } from './components'
|
|
import ResizeMixin from './mixin/ResizeHandler'
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
name: 'Layout',
|
|
components: {
|
|
AppMain,
|
|
Navbar,
|
|
Sidebar,
|
|
TagsView
|
|
},
|
|
mixins: [ResizeMixin],
|
|
computed: {
|
|
...mapState({
|
|
sidebar: (state) => state.app.sidebar,
|
|
device: (state) => state.app.device
|
|
}),
|
|
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
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</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;
|
|
}
|
|
}
|
|
|
|
.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: 100%;
|
|
transition: width 0.28s;
|
|
}
|
|
|
|
// .hideSidebar .fixed-header {
|
|
// width: calc(100% - 54px)
|
|
// }
|
|
|
|
.mobile .fixed-header {
|
|
width: 100%;
|
|
}
|
|
|
|
.el-footer {
|
|
line-height: 40px;
|
|
text-align: center;
|
|
background-color: #f7f9fc;
|
|
}
|
|
</style>
|
|
|