Sfoglia il codice sorgente

判断当前路由类型 bug

daxiongYang 6 anni fa
parent
commit
393c284072
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/router/index.js

+ 2 - 2
src/router/index.js

@ -59,7 +59,7 @@ router.beforeEach((to, from, next) => {
59 59
  // 添加动态(菜单)路由
60 60
  // 1. 已经添加 or 全局路由, 直接访问
61 61
  // 2. 获取菜单列表, 添加并保存本地存储
62
  if (router.options.isAddDynamicMenuRoutes || fnCurrentRouteType(to) === 'global') {
62
  if (router.options.isAddDynamicMenuRoutes || fnCurrentRouteType(to, globalRoutes) === 'global') {
63 63
    next()
64 64
  } else {
65 65
    http({
@ -89,7 +89,7 @@ router.beforeEach((to, from, next) => {
89 89
 * 判断当前路由类型, global: 全局路由, main: 主入口路由
90 90
 * @param {*} route 当前路由
91 91
 */
92
function fnCurrentRouteType (route) {
92
function fnCurrentRouteType (route, globalRoutes = []) {
93 93
  var temp = []
94 94
  for (var i = 0; i < globalRoutes.length; i++) {
95 95
    if (route.path === globalRoutes[i].path) {