vue3-admin-element框架实现动态路由(根据接口返回)

第一步:在src-utils-handleRoutes,修改代码:

export function convertRouter(routers) {
  let array = routers
  routers = []
  for (let i in array) {
    for(let s in asyncRoutes){
      if (array[i].path == asyncRoutes[s].path) {
        routers.push(asyncRoutes[s]);
      }
    }
    // for(let d in array[i].children){
    //   for(let p in routers[i].children){
    //     if(routers[i].children[p].path != array[i].children[d].path){
    //       delete routers[i].children[p]
    //     }
    //   }
    // }
  }
  return routers;
}

vue3-admin-element框架实现动态路由(根据接口返回)_第1张图片

第二步登录后存储菜单数据:vue3-admin-element框架实现动态路由(根据接口返回)_第2张图片

第三部:因为框架默认为前端控制路由所以需要在src-config-setting文件将authentication改为all

 第四步:找到src-config-permission ,获取登录成功后存储的菜单列表

vue3-admin-element框架实现动态路由(根据接口返回)_第3张图片

第五步:找到src--store-modules-routes.js

async setAllRoutes({ commit }) {

    let data = JSON.parse(localStorage.getItem('data'));

    let menu = data.data.menu;

    let accessRoutes = convertRouter(menu);

    commit('setAllRoutes', accessRoutes);

    return accessRoutes;

  },

vue3-admin-element框架实现动态路由(根据接口返回)_第4张图片

总结:此方法需要先在router index.js中制作假数据然后通过后端接口返回的数据进行对比,相等的显示

你可能感兴趣的:(vue,vue.js,前端,javascript)