|
@@ -50,9 +50,10 @@ router.beforeEach(async (to, from, next) => {
|
|
|
} else {
|
|
|
try {
|
|
|
const treeData = await store.dispatch('user/getMenuInfo')
|
|
|
- store.dispatch('auth/changeAuthArrs', treeData)
|
|
|
+ const nd = treeData.filter(item => item.auth_id)
|
|
|
+ store.dispatch('auth/changeAuthArrs', nd)
|
|
|
// const typeData = setType(treeData, 'up_auth_id', 'auth_id')
|
|
|
- const menusArray = parseMenuItem(treeData)
|
|
|
+ const menusArray = parseMenuItem(nd)
|
|
|
const treeMenu = listToTree(menusArray, 'up_auth_id', 'auth_id')
|
|
|
const dataMenu = _.unionBy(treeMenu, 'auth_id')
|
|
|
const menus = parseMenu(dataMenu)
|