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.
reagent_manage/vue/src/layout/index.vue

96 lines
2.4 KiB

6 years ago
<template>
<section class="el-container app-wrapper">
<v-sidebar/>
<section class="el-container main-container" :class="{'has-header':hasHeader,'has-tags-view':useTagsView}">
6 years ago
<v-header/>
<v-main/>
</section>
<!--移动端侧边栏展开时的遮罩-->
<div v-show="showSidebarMask" class="drawer-bg" @click.stop.prevent="collapseSidebar"/>
6 years ago
</section>
</template>
<script>
import {mapState} from 'vuex'
import VMain from './components/Main'
import VHeader from './components/Header'
import VSidebar from './components/Sidebar'
import ResizeHandler from './mixin/ResizeHandler'
6 years ago
import {isEmpty} from "@/utils"
export default {
name: 'Layout',
mixins: [ResizeHandler],
6 years ago
components: {VMain, VSidebar, VHeader},
6 years ago
computed: {
...mapState('app', {
device: state => state.device,
6 years ago
hasHeader: state => state.hasHeader
}),
...mapState('setting', {
useTagsView: state => state.useTagsView,
sidebarCollapse: state => state.sidebarCollapse
}),
6 years ago
...mapState('socket', {
online: state => state.online
}),
6 years ago
...mapState('user', {
isLogin: state => !isEmpty(state.id) && !isEmpty(state.token)
}),
6 years ago
showOfflineTip() {
return !this.online && this.isLogin
},
showSidebarMask() {
return !this.sidebarCollapse && this.device === 'mobile'
6 years ago
}
},
6 years ago
watch: {
showOfflineTip(v) {
v ? this.$bottomTip('与服务器失去连接') : this.$bottomTip.close()
}
},
methods: {
collapseSidebar() {
this.$store.commit('setting/sidebarCollapse', true)
}
6 years ago
}
}
</script>
<style lang="scss">
.app-wrapper {
position: relative;
height: 100%;
width: 100%;
flex-direction: row;
.drawer-bg {
background: #000;
opacity: 0.3;
width: 100%;
top: 0;
height: 100%;
position: absolute;
z-index: 9;
}
.main-container {
overflow: hidden;
position: relative;
flex-direction: column;
}
6 years ago
}
</style>