|
@@ -13,7 +13,6 @@ import { useTimeoutFn } from "@vueuse/core";
|
|
|
import { RouteConfigs } from "/@/layout/types";
|
|
|
import { buildHierarchyTree } from "@pureadmin/utils";
|
|
|
import { usePermissionStoreHook } from "/@/store/modules/permission";
|
|
|
-const Layout = () => import("/@/layout/index.vue");
|
|
|
const IFrame = () => import("/@/layout/frameView.vue");
|
|
|
// https://cn.vitejs.dev/guide/features.html#glob-import
|
|
|
const modulesRoutes = import.meta.glob("/src/views/**/*.{vue,tsx}");
|
|
@@ -229,12 +228,10 @@ function addAsyncRoutes(arrRoutes: Array<RouteRecordRaw>) {
|
|
|
arrRoutes.forEach((v: RouteRecordRaw) => {
|
|
|
// 将backstage属性加入meta,标识此路由为后端返回路由
|
|
|
v.meta.backstage = true;
|
|
|
- if (v.redirect) {
|
|
|
- v.component = Layout;
|
|
|
- } else if (v.meta?.frameSrc) {
|
|
|
+ if (v.meta?.frameSrc) {
|
|
|
v.component = IFrame;
|
|
|
} else {
|
|
|
- // 对后端传component组件路径和不传做兼容(如果后端传component组件路径,那么path可以随便写,如果不传,component组件路径会根path保持一致)
|
|
|
+ // 对后端传component组件路径和不传做兼容(如果后端传component组件路径,那么path可以随便写,如果不传,component组件路径会跟path保持一致)
|
|
|
const index = v?.component
|
|
|
? modulesRoutesKeys.findIndex(ev => ev.includes(v.component as any))
|
|
|
: modulesRoutesKeys.findIndex(ev => ev.includes(v.path));
|