问题描述:
在菜单管理中添加一级菜单后点击该菜单,能跳转过去,但是页面空白,打开控制台,没有报错,查看元素发现app-main下没有元素,通过各种查找最终发现是返回的路由问题
修改内容:
src/store/modules/permission.js里面的GenerateRoutes中添加如下代码
res.data.forEach((item, i) => {
if (!item.children) {
res.data[i] = {
meta: '',
path: '',
redirect: "noRedirect",
component: "Layout",
alwaysShow: false,
children: [
name: item.name,
path: item.path.substr(1),
component: item.path.substr(1) + '/index',
hidden: false,
noChildren: true,
meta: item.meta
复制代码