vue+element使用动态加载路由方式实现三级菜单页面
网络编程 2021-07-04 14:06www.168986.cn编程入门
这篇文章主要介绍了vue+element使用动态加载路由方式实现三级菜单页面显示的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随长沙网络推广过来看看吧
需要用到中间件的方式,这样就可以实现了我们想要的方式
publish-center.vue
<template> <router-view></router-view> </template> <script> export default { } </script>
<el-menu :default-active="$route.path" class="el-menu-vertical-demo el-menus" @open="handleopen" @close="handleclose" @select="handleselect" unique-opened router v-show="!collapsed" > <div class="tools" @click.prevent="collapse"> <i>|||</i> </div> <template v-for="(item,index) in $router.options.routes" v-if="!item.hidden"> <el-submenu :index="index+''" v-if="!item.leaf"> <template slot="title" ><i :class="item.iconCls"></i>{{item.name}}</template> <el-menu-item-group v-for="(child,indexs) in item.children" :index="child.path" :key="child.path" v-if="!child.hidden"> <!-- <el-menu class="xz" v-if="!child.path" :default-active="child.path"> --> <el-submenu :index="child.path" v-if="child.z &&!item.leaf"> <template slot="title" class="child_title"><i :class="child.iconCls"></i>{{child.name}}</template> <el-menu-item v-for="(sun,i) in child.children" :index="sun.path" :key="sun.path" > {{sun.name}} </el-menu-item> </el-submenu> <!-- </el-menu> --> <el-menu-item :index="child.path" v-if="!child.z" :key="child.path"> {{child.name}} </el-menu-item> </el-menu-item-group> <!-- <el-menu-item v-if="child.path">{{child.name}}</el-menu-item> --> <!-- </el-menu-item-group> --> <!-- <el-menu-item v-for="sun in child.children" :index="sun.path" :key="sun.path" v-if="!sun.hidden"> {{sun.name}}</el-menu-item> --> </el-submenu> <el-menu-item v-if="item.leaf&&item.children.length>0" :index="item.children[0].path"><i :class="item.iconCls"></i>{{item.children[0].name}}</el-menu-item> </template> </el-menu>
路由部分
{ path:'/recordQuery', ponent:Home, name:'菜单1', iconCls:'el-icon-search', children: [ { path: 'carRecord', z:'1', ponent: () => import('@/page/publish-center.vue'), name: '菜单2' , children:[{ path: '/carRecord/passRecord', ponent: passRecord, name: '菜单' }, ] }, ] },
补充知识Vue使用addRouter()动态生成三级菜单的问题
标题记录一次vue使用addRouter动态生成三级菜单栏的问题
1.addRouter()里面需要一个固定格式的数组例如
import { asyncRoutes, constantRoutes } from '@/router' / Layout / import Layout from '@/layout' / Use meta.role to determine if the current user has permission @param roles @param route / function hasPermission(roles, route) { if (route.meta && route.meta.roles) { return roles.some(role => route.meta.roles.includes(role)) } else { return true } } / Filter asynchronous routing tables by recursion @param routes asyncRoutes @param roles / export function filterAsyncRoutes(routes, roles, parentModules) { const res = [] parentModules.forEach(parentModule => { var tmp = {} tmp.path = parentModule.parentTargetUrl tmp.ponent = Layout tmp.name = parentModule.parentTargetUrl.substr(1) tmp.meta = {} tmp.meta.title = parentModule.parentModuleName tmp.meta.icon = 'dashboard' tmp.meta.roles = roles tmp.children = [] parentModule.modules.forEach(module => { // XXXListPage var childrenTmpListPage = {} var childrenTmpEditPage = {} //childrenTmpListPage.path = '/' + module.targetName + 'ListPage' childrenTmpListPage.name = module.targetName + 'ListPage' childrenTmpListPage.meta = {} childrenTmpListPage.meta.title = module.moduleName childrenTmpListPage.meta.icon = 'dashboard' childrenTmpListPage.meta.roles = roles //childrenTmpListPage.ponent = resolve => require(['@/page/' + module.targetName.charAt(0).toUpperCase() + module.targetName.slice(1) + '/list_page'], resolve) childrenTmpListPage.path = '/' + module.targetName + 'ListPage' if(module.childrenModules != null && module.childrenModules != undefined && module.childrenModules != ""){ childrenTmpListPage.ponent = Layout }else{ childrenTmpListPage.ponent = resolve => require(['@/page/' + module.targetName.charAt(0).toUpperCase() + module.targetName.slice(1) + '/list_page'], resolve) } childrenTmpListPage.children = [] // XXXEditPage // childrenTmpEditPage.path = '/' + module.targetName + 'EditPage' // childrenTmpEditPage.name = module.targetName + 'EditPage' // childrenTmpEditPage.meta = {} // childrenTmpEditPage.meta.title = module.moduleName // childrenTmpEditPage.meta.icon = 'dashboard' // childrenTmpEditPage.meta.roles = roles // childrenTmpEditPage.hidden = true // childrenTmpEditPage.ponent = resolve => require(['@/page/' + module.targetName.charAt(0).toUpperCase() + module.targetName.slice(1) + '/edit_page'], resolve) // 三级菜单生成 var roleChildren = roles if(module.childrenModules != null && module.childrenModules != undefined && module.childrenModules != ""){ module.childrenModules.forEach(module =>{ var children2TmpListPage = {} var children2TmpEditPage = {} // childrenTmpListPage.path children2TmpListPage.path = module.targetName + 'ListPage' alert(children2TmpListPage.path) children2TmpListPage.name = module.targetName + 'ListPage' children2TmpListPage.meta = {} children2TmpListPage.meta.title = module.moduleName children2TmpListPage.meta.icon = 'dashboard' children2TmpListPage.meta.roles = roleChildren children2TmpListPage.ponent = resolve => require(['@/page/' + module.targetName.charAt(0).toUpperCase() + module.targetName.slice(1) + '/list_page'], resolve) console.log('@/page/' + module.targetName.charAt(0).toUpperCase() + module.targetName.slice(1) + '/list_page') childrenTmpListPage.children.push(children2TmpListPage) }) } tmp.children.push(childrenTmpListPage) // tmp.children.push(childrenTmpEditPage) }) res.push(tmp) }) console.log(res) return res } const state = { routes: [], addRoutes: [] } const mutations = { SET_ROUTES: (state, routes) => { state.addRoutes = routes state.routes = constantRoutes.concat(routes) } } const actions = { generateRoutes({ mit }, obj) { return new Promise(resolve => { let aessedRoutes = filterAsyncRoutes(asyncRoutes, obj.roles, obj.parentModules) mit('SET_ROUTES', aessedRoutes) resolve(aessedRoutes) }) } } export default { namespaced: true, state, mutations, actions }
三级路由重点
ponment: 二级路由不能设置为NULL,必须存在,我设置的就是Layout(引用自@/layout)
path:路径最前面不能使用"/"
以上这篇vue+element使用动态加载路由方式实现三级菜单页面显示的操作就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南