index.vue 1.5 KB
<!--
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-03-10 15:00:56
-->
<template>
  <div class="app-wrapper scWrapper">
    <navbar />
    <div class="main-container">
      <sidebar class="sidebar-container" />
      <app-main />
    </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],
    created () {
      this.$store.dispatch("products/setData", "BDCSBPT");
      console.log("ZOULEJG");
    },
    computed: {
      ...mapState({
        sidebar: state => state.app.sidebar,
        needTagsView: state => state.settings.tagsView,
        fixedHeader: state => state.settings.fixedHeader
      })
    }
  }
</script>
<style lang="scss">
  @import "~@/styles/mixin.scss";
  @import "~@/styles/sbSidebar.scss";

  .app-wrapper {
    @include clearfix;
    position: relative;
    height: 100%;
    width: 100%;
    // background-color: $containerbg;
    padding: 0;

    &.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 {
    width: 100%;
    transition: width 0.28s;
  }

  .el-dropdown-menu--small {
    padding: 0;
    width: 5px;
  }
</style>