|
|
@ -13,7 +13,6 @@ |
|
|
|
<menuTree :menuList="otherMenus" /> |
|
|
|
<menuTree :menuList="otherMenus" /> |
|
|
|
</el-submenu> |
|
|
|
</el-submenu> |
|
|
|
</el-menu> |
|
|
|
</el-menu> |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
@ -150,8 +149,10 @@ export default { |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 跳转 |
|
|
|
// 跳转 |
|
|
|
jump (id) { |
|
|
|
jump (id) { |
|
|
|
this.getPath(this.otherMenus, id || this.otherMenus[0].id) |
|
|
|
id = id || this.otherMenus[0].id |
|
|
|
this.getPath(this.menus, id || this.menus[0].id) |
|
|
|
this.active = id |
|
|
|
|
|
|
|
this.getPath(this.otherMenus, id) |
|
|
|
|
|
|
|
this.getPath(this.menus, id) |
|
|
|
this.columnTo(this.toItem) |
|
|
|
this.columnTo(this.toItem) |
|
|
|
this.$parent.showSearch = false |
|
|
|
this.$parent.showSearch = false |
|
|
|
} |
|
|
|
} |
|
|
|