增加模块市场

This commit is contained in:
2026-01-29 17:37:39 +08:00
parent b7702ef3b1
commit 992b7e571b
7 changed files with 2133 additions and 68 deletions
+22 -17
View File
@@ -1,7 +1,17 @@
import { createRouter, createWebHashHistory } from "vue-router";
import { convertMenusToRoutes } from "./dynamicRoutes";
// 静态路由:登录页独立,404 页面独立,home 导航门户独立
// 静态路由:需要在 Main 框架内显示的页面
const staticMainChildren = [
{
path: "/user/userProfile",
name: "userProfile",
component: () => import("@/views/user/userProfile.vue"),
meta: { requiresAuth: true, title: "用户中心" }
}
];
// 静态路由:登录页独立、home 导航门户独立、404 页面独立
const staticRoutes = [
{
path: "/login",
@@ -9,19 +19,20 @@ const staticRoutes = [
component: () => import("@/views/login/index.vue"),
meta: { requiresAuth: false }
},
{
path: "/",
name: "Main",
component: () => import("@/views/Main.vue"),
redirect: "/dashboard",
meta: { requiresAuth: true }
},
{
path: "/home",
name: "Home",
component: () => import("@/views/home/index.vue"),
meta: { requiresAuth: true, title: "系统导航", isStandalone: true }
},
{
path: "/",
name: "Main",
component: () => import("@/views/Main.vue"),
redirect: "/dashboard",
meta: { requiresAuth: true },
children: staticMainChildren
},
{
path: "/:pathMatch(.*)*",
name: "NotFound",
@@ -93,14 +104,14 @@ function addDynamicRoutes(menus) {
router.removeRoute('Main');
}
// 重新添加主路由
// 重新添加主路由,合并静态子路由和动态路由
router.addRoute({
path: "/",
name: "Main",
component: () => import("@/views/Main.vue"),
redirect: "/dashboard",
meta: { requiresAuth: true },
children: dynamicRoutes // 嵌套路由直接加入 children
children: [...staticMainChildren, ...dynamicRoutes] // 合并静态和动态子路由
});
dynamicRoutesAdded = true;
@@ -159,17 +170,11 @@ router.beforeEach(async (to, from, next) => {
if (!dynamicRoutesAdded) {
await loadAndAddDynamicRoutes();
// 路由加载后重新导航确保路由匹配正确
// 路由加载后重新导航,确保路由匹配正确
next({ path: to.path, replace: true });
return;
}
// 如果匹配不到路由,跳转到首页导航门户
if (to.matched.length === 0) {
next({ path: "/home" });
return;
}
next();
});