kimi
2020-01-21 42d0ba166a831e4069e7d926d52e8544b1486ae9
src/views/Home.vue
@@ -4,9 +4,9 @@
        <el-aside width="200px" style="background-color: rgb(238, 241, 246); ">
            <div style="width: 100%;height: 60px;"></div>
            <el-menu
                :default-openeds="defaultActive"
                class="el-menu-vertical-demo"
                :unique-opened="false"
                  :default-active="defaultActive"
                @select ="menuSelect"
                @open ="menuSelect"
                @close ="menuSelect"
@@ -63,16 +63,16 @@
      return {
         breadcrumbItems:[],
         defaultActive: [],
         defaultActive: "",
         navList:[
            {
               title:"首页", path:"mine",children:[]
            },
           {
             title:"项目管理", path:"0_1",children:[
               {title:"信息广场", path:"project2",children:[]},
               {title:"项目总览", path:"Overview",children:[]},
               {title:"项目分析", path:"project3",children:[]},
               {title:"信息广场", path:"square",children:[]},
               {title:"项目总览", path:"list",children:[]},
               {title:"项目分析", path:"Overview",children:[]},
               {title:"归档报告", path:"project4",children:[]},
             ]
           },
@@ -89,6 +89,10 @@
      if (!userId_) {
         this.$router.push('/login');
      }
      else {
         this.defaultActive = "mine";
         this.$router.push('/mine');
      }
   },
   
  methods: {