mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 03:49:22 +08:00
修复:菜单组件 openChang 事件的 bug;🐛 #156
fix: the problem of openChange event in menu.js;
This commit is contained in:
parent
f74d08248e
commit
9e7a03fcd8
@ -200,9 +200,10 @@ export default {
|
||||
})
|
||||
},
|
||||
updateMenu () {
|
||||
const menuRoutes = this.$route.matched.filter(item => item.path !== '')
|
||||
const matchedRoutes = this.$route.matched.filter(item => item.path !== '')
|
||||
this.selectedKeys = this.getSelectedKey(this.$route)
|
||||
let openKeys = menuRoutes.map(item => item.path)
|
||||
let openKeys = matchedRoutes.map(item => item.path)
|
||||
openKeys = openKeys.slice(0, openKeys.length -1)
|
||||
if (!fastEqual(openKeys, this.sOpenKeys)) {
|
||||
this.collapsed || this.mode === 'horizontal' ? this.cachedOpenKeys = openKeys : this.sOpenKeys = openKeys
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user