|
@@ -9,19 +9,19 @@ const dynamicRouteFiles = import.meta.glob('./modules/**/*.ts', {
|
|
|
});
|
|
|
|
|
|
// 有需要可以自行打开注释,并创建文件夹
|
|
|
-// const staticRouteFiles = import.meta.glob('./static/**/*.ts', { eager: true });
|
|
|
+// const externalRouteFiles = import.meta.glob('./external/**/*.ts', { eager: true });
|
|
|
|
|
|
/** 动态路由 */
|
|
|
const dynamicRoutes: RouteRecordRaw[] = mergeRouteModules(dynamicRouteFiles);
|
|
|
|
|
|
-/** 静态路由列表,访问这些页面可以不需要权限 */
|
|
|
-// const staticRoutes: RouteRecordRaw[] = mergeRouteModules(staticRouteFiles);
|
|
|
-const staticRoutes: RouteRecordRaw[] = [];
|
|
|
+/** 外部路由列表,访问这些页面可以不需要Layout,可能用于内嵌在别的系统 */
|
|
|
+// const externalRoutes: RouteRecordRaw[] = mergeRouteModules(externalRouteFiles);
|
|
|
+const externalRoutes: RouteRecordRaw[] = [];
|
|
|
|
|
|
/** 路由列表,由基本路由+静态路由组成 */
|
|
|
const routes: RouteRecordRaw[] = [
|
|
|
...coreRoutes,
|
|
|
- ...staticRoutes,
|
|
|
+ ...externalRoutes,
|
|
|
fallbackNotFoundRoute,
|
|
|
];
|
|
|
|