Blame view

src/layout/components/Sidebar/index.vue 1.61 KB
b89c8760   wangming   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <template>
    <div :class="{'has-logo':showLogo}">
      <logo v-if="showLogo" :collapse="isCollapse" />
      <el-scrollbar wrap-class="scrollbar-wrapper">
        <el-menu
          :default-active="activeMenu"
          :collapse="isCollapse"
          :background-color="variables.menuBg"
          :text-color="variables.menuText"
          :unique-opened="false"
          :active-text-color="variables.menuActiveText"
          :collapse-transition="false"
          mode="vertical"
        >
          <sidebar-item v-for="route in routes" :key="route.path" :item="route" :base-path="route.path" />
        </el-menu>
      </el-scrollbar>
    </div>
  </template>
  
  <script>
  import { mapGetters } from 'vuex'
  import Logo from './Logo'
  import SidebarItem from './SidebarItem'
  import variables from '@/styles/variables.scss'
1de913cf   ren   sdf
26
  import {getRoutes} from '@/utils/routerList.js'
b89c8760   wangming   项目初始化
27
28
29
  
  export default {
    components: { SidebarItem, Logo },
1de913cf   ren   sdf
30
31
32
33
34
    data(){
      return {
        routes:[]
      };
    },
b89c8760   wangming   项目初始化
35
36
37
38
    computed: {
      ...mapGetters([
        'sidebar'
      ]),
1de913cf   ren   sdf
39
40
41
42
      // routes() {
      //   return this.$router.options.routes
      // },
  
b89c8760   wangming   项目初始化
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
      activeMenu() {
        const route = this.$route
        const { meta, path } = route
        // if set path, the sidebar will highlight the path you set
        if (meta.activeMenu) {
          return meta.activeMenu
        }
        return path
      },
      showLogo() {
        return this.$store.state.settings.sidebarLogo
      },
      variables() {
        return variables
      },
      isCollapse() {
        return !this.sidebar.opened
      }
1de913cf   ren   sdf
61
62
63
64
65
66
67
    },
    created() {
      this.routes = getRoutes();
      this.$bus.$on('relogin',()=>{
        this.routes = getRoutes();
      })
    },
b89c8760   wangming   项目初始化
68
69
  }
  </script>