mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import type { Component } from 'vue';
|
|
import { EnumLayoutComponentName } from '@/enum';
|
|
import { BasicLayout, BlankLayout } from '@/layouts';
|
|
import { views } from '@/views';
|
|
import type { LayoutComponentName } from '@/interface';
|
|
|
|
type LayoutComponent = Record<LayoutComponentName, () => Promise<Component>>;
|
|
|
|
/**
|
|
* 获取页面导入的vue文件(懒加载的方式)
|
|
* @param layoutType - 布局类型
|
|
*/
|
|
export function getLayoutComponent(layoutType: LayoutComponentName) {
|
|
const layoutComponent: LayoutComponent = {
|
|
basic: BasicLayout,
|
|
blank: BlankLayout,
|
|
};
|
|
return () => setViewComponentName(layoutComponent[layoutType], EnumLayoutComponentName[layoutType]);
|
|
}
|
|
|
|
/**
|
|
* 获取页面导入的vue文件(懒加载的方式)
|
|
* @param routeKey - 路由key
|
|
*/
|
|
export function getViewComponent(routeKey: AuthRoute.RouteKey) {
|
|
return () => setViewComponentName(views[routeKey], routeKey) as Promise<Component>;
|
|
}
|
|
|
|
/** 给页面组件设置名称 */
|
|
async function setViewComponentName(asyncComponent: () => Promise<Component>, name: string) {
|
|
const component = (await asyncComponent()) as { default: Component };
|
|
Object.assign(component.default, { name });
|
|
return component;
|
|
}
|