mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(projects): 增加静态路由
This commit is contained in:
parent
a0fbe28595
commit
c611fa0e35
@ -1,12 +1,9 @@
|
|||||||
import { RouteRecordRaw } from 'vue-router';
|
export const dashboard = {
|
||||||
import { BasicLayout } from '@/layouts/index';
|
|
||||||
export const dashboard: RouteRecordRaw = {
|
|
||||||
path: '/dashboard',
|
|
||||||
name: 'dashboard',
|
name: 'dashboard',
|
||||||
|
path: '/dashboard',
|
||||||
redirect: '/dashboard/workbench',
|
redirect: '/dashboard/workbench',
|
||||||
component: BasicLayout,
|
|
||||||
meta: {
|
meta: {
|
||||||
title: '分析页',
|
title: '分析页-static',
|
||||||
requiresAuth: true,
|
requiresAuth: true,
|
||||||
icon: 'icon-park-outline:analysis',
|
icon: 'icon-park-outline:analysis',
|
||||||
},
|
},
|
||||||
@ -14,7 +11,6 @@ export const dashboard: RouteRecordRaw = {
|
|||||||
{
|
{
|
||||||
name: 'dashboard_workbench',
|
name: 'dashboard_workbench',
|
||||||
path: '/dashboard/workbench',
|
path: '/dashboard/workbench',
|
||||||
component: () => import('@/views/dashboard/workbench/index.vue'),
|
|
||||||
meta: {
|
meta: {
|
||||||
title: '工作台',
|
title: '工作台',
|
||||||
requiresAuth: true,
|
requiresAuth: true,
|
||||||
@ -24,7 +20,6 @@ export const dashboard: RouteRecordRaw = {
|
|||||||
{
|
{
|
||||||
name: 'dashboard_monitor',
|
name: 'dashboard_monitor',
|
||||||
path: '/dashboard/monitor',
|
path: '/dashboard/monitor',
|
||||||
component: () => import('@/views/dashboard/monitor/index.vue'),
|
|
||||||
meta: {
|
meta: {
|
||||||
title: '监控页',
|
title: '监控页',
|
||||||
requiresAuth: true,
|
requiresAuth: true,
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
import { dashboard } from './dashboard';
|
import { dashboard } from './dashboard';
|
||||||
|
import { test } from './test';
|
||||||
|
|
||||||
export const staticRoutes = [dashboard];
|
export const staticRoutes = [dashboard, test];
|
||||||
|
63
src/router/modules/test.ts
Normal file
63
src/router/modules/test.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
export const test = {
|
||||||
|
name: 'test',
|
||||||
|
path: '/test',
|
||||||
|
redirect: '/test/test1',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:ambulance',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'test1',
|
||||||
|
path: '/test/test1',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题1',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:alarm',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'test2',
|
||||||
|
path: '/test/test2',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题2',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:pic',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'test2_detail',
|
||||||
|
path: '/test/test2/detail',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题2的详情页',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:tool',
|
||||||
|
hide: true,
|
||||||
|
activeMenu: '/test/test2',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'test3',
|
||||||
|
path: '/test/test3',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题3',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:tool',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'test4',
|
||||||
|
path: '/test/test3/test4',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题4',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:tool',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
@ -88,11 +88,12 @@ export const useRouteStore = defineStore('route-store', {
|
|||||||
},
|
},
|
||||||
/* 初始化静态路由 */
|
/* 初始化静态路由 */
|
||||||
async initStaticRoute() {
|
async initStaticRoute() {
|
||||||
/* 将静态路由转换为侧边菜单 */
|
// 根据静态路由表来生成真实路由
|
||||||
staticRoutes.forEach((route) => {
|
const appRoutes = await createDynamicRoutes(staticRoutes);
|
||||||
// 插入路由表
|
// 更具返回的生成侧边菜单
|
||||||
router.addRoute(route);
|
await this.createMenus(staticRoutes);
|
||||||
});
|
// 插入路由表
|
||||||
|
router.addRoute(appRoutes);
|
||||||
},
|
},
|
||||||
//* 将返回的路由表渲染成侧边栏 */
|
//* 将返回的路由表渲染成侧边栏 */
|
||||||
transformAuthRoutesToMenus(userRoutes: AppRoute.Route[]): MenuOption[] {
|
transformAuthRoutesToMenus(userRoutes: AppRoute.Route[]): MenuOption[] {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user