| | |
| | | <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" |
| | |
| | | |
| | | 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:[]}, |
| | | ] |
| | | }, |
| | |
| | | if (!userId_) { |
| | | this.$router.push('/login'); |
| | | } |
| | | else { |
| | | this.defaultActive = "mine"; |
| | | this.$router.push('/mine'); |
| | | } |
| | | }, |
| | | |
| | | methods: { |