| | |
| | | return new Promise<void>(async (resolve) => { |
| | | // 获得菜单列表,它在登录的时候,setUserInfoAction 方法中已经进行获取 |
| | | let res: AppCustomRouteRecordRaw[] = [] |
| | | if (wsSessionCache.get(CACHE_KEY.ROLE_ROUTERS)) { |
| | | res = wsSessionCache.get(CACHE_KEY.ROLE_ROUTERS) as AppCustomRouteRecordRaw[] |
| | | const roleRouters = wsSessionCache.get(CACHE_KEY.ROLE_ROUTERS) |
| | | if (roleRouters) { |
| | | res = roleRouters as AppCustomRouteRecordRaw[] |
| | | } |
| | | const routerMap: AppRouteRecordRaw[] = generateRoute(res) |
| | | // 动态路由,404一定要放到最后面 |
| | | // preschooler:vue-router@4以后已支持静态404路由,此处可不再追加 |
| | | this.addRouters = routerMap.concat([ |
| | | { |
| | | path: '/:path(.*)*', |
| | | redirect: '/404', |
| | | // redirect: '/404', |
| | | component: () => import('@/views/Error/404.vue'), |
| | | name: '404Page', |
| | | meta: { |
| | | hidden: true, |