添加会议管理后端页面

This commit is contained in:
2025-10-28 17:28:10 +08:00
parent 2a8637ffb0
commit 63e1708403
3 changed files with 631 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ const CommunityView = () => import('../views/community/CommunityView.vue')
const ResourceView = () => import('../views/resource/ResourceView.vue')
const BaseOverview = ()=> import('../views/baseoverview/BaseOverView.vue')
const DevProjectView = ()=> import('../views/devproject/devprojectView.vue')
const MeetingView = ()=> import('../views/meeting/meetingView.vue')
// 定义路由规则(现在 RouteRecordRaw 导入正确)
const routes: RouteRecordRaw[] = [
@@ -96,6 +97,16 @@ const routes: RouteRecordRaw[] = [
title: '编辑科学研究',
requiresAuth: false
}
},
{
path: '/meeting',
name: 'meeting',
component: MeetingView,
meta: {
title: '编辑会议',
requiresAuth: false
}
}
]