储藏室页面部分结构
This commit is contained in:
@@ -47,6 +47,30 @@ export const constantRoutes: RouteRecordRaw[] = [
|
||||
component: () => import('@/views/login.vue'),
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
path: '/community',
|
||||
redirect: '/community/communitylist',
|
||||
children: [
|
||||
{
|
||||
path: 'communitylist',
|
||||
name: 'communitylist',
|
||||
hidden: true,
|
||||
meta: {
|
||||
title: '小区列表'
|
||||
},
|
||||
component: () => import('@/views/community/index.vue')
|
||||
},
|
||||
{
|
||||
path: 'AddCommunity',
|
||||
name: 'AddCommunity',
|
||||
hidden: true,
|
||||
meta: {
|
||||
title: '新建小区'
|
||||
},
|
||||
component: () => import('@/views/community/AddCommunity.vue')
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/register',
|
||||
component: () => import('@/views/register.vue'),
|
||||
@@ -92,9 +116,7 @@ export const constantRoutes: RouteRecordRaw[] = [
|
||||
];
|
||||
|
||||
// 动态路由,基于用户权限动态去加载
|
||||
export const dynamicRoutes: RouteRecordRaw[] = [
|
||||
|
||||
];
|
||||
export const dynamicRoutes: RouteRecordRaw[] = [];
|
||||
|
||||
/**
|
||||
* 创建路由
|
||||
|
||||
Reference in New Issue
Block a user