123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <template>
- <!-- :class="classObj" -->
- <div class="app-wrapper">
- <div v-if="device==='mobile'&&sidebar.opened"
- class="drawer-bg"
- @click="handleClickOutside" />
- <div :class="{'fixed-header':fixedHeader}" style="width: 100%;">
- <navbar />
- </div>
- <sidebar class="sidebar-container" @childStatus="childStatus" v-show="onlyStatus" />
- <div class="main-container" :class="[ onlyStatus ? null : 'noContainer' ]">
- <div :class="{'fixed-header':fixedHeader, 'noTagView': !onlyStatus}" style="top: 90px;" >
- <!-- <navbar /> -->
- <tags-view></tags-view>
- </div>
- <app-main />
- </div>
- </div>
- </template>
- <script>
- import { Navbar, Sidebar, AppMain, TagsView } from './components'
- import ResizeMixin from './mixin/ResizeHandler'
- export default {
- name: 'Layout',
- components: {
- Navbar,
- Sidebar,
- AppMain,
- TagsView
- },
- 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: false,
- openSidebar: this.sidebar.opened,
- // withoutAnimation: this.sidebar.withoutAnimation,
- // mobile: this.device === 'mobile'
- }
- }
- },
- data() {
- return {
- onlyStatus: true
- }
- },
- methods: {
- childStatus(status) {
- // console.log(status)
- this.onlyStatus = status
- },
- handleClickOutside () {
- this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "~@/styles/mixin.scss";
- @import "~@/styles/variables.scss";
- #app .sidebar-container {
- top: 90px;
- background-color: #fff;
- }
- .app-wrapper {
- @include clearfix;
- position: relative;
- // height: 100vh;
- 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: 1111;
- width: calc(100% - #{$sideBarWidth});
- transition: width 0.28s;
- }
- .hideSidebar .fixed-header {
- width: calc(100% - 54px);
- }
- .mobile .fixed-header {
- width: 100%;
- }
- .main-container {
- // overflow:
- padding: 10px 10px 0 0;
- // background-color: #fff;
- box-sizing: border-box;
- }
- .noContainer {
- margin-left: 0 !important;
- }
- .noTagView {
- width: 100% !important;
- }
- </style>
|