|
@@ -0,0 +1,111 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-row class="tac">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-menu
|
|
|
+ default-active="2"
|
|
|
+ class="el-menu-vertical-demo"
|
|
|
+ @open="handleOpen"
|
|
|
+ @close="handleClose"
|
|
|
+ background-color="#545c64"
|
|
|
+ text-color="#fff"
|
|
|
+ active-text-color="#ffd04b"
|
|
|
+ style="height: 100vh">
|
|
|
+ <h3>通用后台管理</h3>
|
|
|
+ <el-menu-item :index="item.label" v-for="item in noChild" :key="item.label" @click="menuRouter(item.path)">
|
|
|
+ <i :class="item.icon"></i>
|
|
|
+ <span slot="title">{{item.label}}</span>
|
|
|
+ </el-menu-item>
|
|
|
+ <el-submenu :index="item.label" v-for="item in hasChild" :key="item.label">
|
|
|
+ <template slot="title">
|
|
|
+ <i :class="item.icon"></i>
|
|
|
+ <span>{{item.label}}</span>
|
|
|
+ </template>
|
|
|
+ <el-menu-item-group>
|
|
|
+ <el-menu-item :index="item2.label" v-for="item2 in item.child" :key="item2.label">
|
|
|
+ {{item2.label}}
|
|
|
+ </el-menu-item>
|
|
|
+ </el-menu-item-group>
|
|
|
+ </el-submenu>
|
|
|
+ </el-menu>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "left_navigation",
|
|
|
+ data(){
|
|
|
+ return{
|
|
|
+ navigator:[
|
|
|
+ {
|
|
|
+ label:'首页',
|
|
|
+ icon:'el-icon-s-home',
|
|
|
+ path:'/index'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label:'用户管理',
|
|
|
+ icon:'el-icon-user-solid',
|
|
|
+ path:'/user'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '商品管理',
|
|
|
+ icon: 'el-icon-s-goods',
|
|
|
+ path: '/commodity'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '其他',
|
|
|
+ icon: 'el-icon-s-grid',
|
|
|
+ child:[
|
|
|
+ {
|
|
|
+ label:'选项一',
|
|
|
+ path:'/one',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '选项二',
|
|
|
+ path: '/two'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ handleOpen(key, keyPath) {
|
|
|
+ console.log(key, keyPath);
|
|
|
+ },
|
|
|
+ handleClose(key, keyPath) {
|
|
|
+ console.log(key, keyPath);
|
|
|
+ },
|
|
|
+ menuRouter(path){
|
|
|
+ let that = this
|
|
|
+ //只有当点击的导航路径与当前路径不相同时才可以跳转('/'重定向后相当于'/index')
|
|
|
+ if(that.$route.path !== path && !(that.$route.path === '/' && path === '/index')){
|
|
|
+ console.log('执行了')
|
|
|
+ this.$router.push(path)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed:{
|
|
|
+ hasChild(){
|
|
|
+ return this.navigator.filter(item => item.child)
|
|
|
+ },
|
|
|
+ noChild(){
|
|
|
+ return this.navigator.filter(item => !item.child)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="less">
|
|
|
+.el-menu{
|
|
|
+ h3{
|
|
|
+ color: #ffffff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 48px;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|