diff --git a/ry-vue3/src/layout/AdminLayout.vue b/ry-vue3/src/layout/AdminLayout.vue
index f30cbd2..c5ab3ca 100644
--- a/ry-vue3/src/layout/AdminLayout.vue
+++ b/ry-vue3/src/layout/AdminLayout.vue
@@ -74,7 +74,7 @@ const MENU = {
{ path: '/admin/workbench', title: '工作台', icon: House },
{ path: '/admin/users', title: '用户管理', icon: User },
{ path: '/admin/roles', title: '角色管理', icon: Setting },
- { path: '/admin/projects', title: '项目全览', icon: Document },
+ { path: '/admin/projects', title: '项目管理', icon: Document },
{ path: '/admin/meetings', title: '会议全览', icon: Calendar },
{ path: '/admin/library', title: '资料库管理', icon: Box, children: [
{ path: '/admin/experts', title: '专家管理', icon: UserFilled },
diff --git a/ry-vue3/src/router/index.js b/ry-vue3/src/router/index.js
index d9e59b6..ef7bb5a 100644
--- a/ry-vue3/src/router/index.js
+++ b/ry-vue3/src/router/index.js
@@ -25,7 +25,7 @@ const routes = [
{ path: 'workbench', name: 'admin-workbench', component: () => import('@/views/admin/Workbench.vue'), meta: { title: '工作台' } },
{ path: 'users', name: 'admin-users', component: () => import('@/views/admin/Users.vue'), meta: { title: '用户管理' } },
{ path: 'roles', name: 'admin-roles', component: () => import('@/views/admin/Roles.vue'), meta: { title: '角色管理' } },
- { path: 'projects', name: 'admin-projects', component: () => import('@/views/admin/Projects.vue'), meta: { title: '项目全览' } },
+ { path: 'projects', name: 'admin-projects', component: () => import('@/views/manager/Projects.vue'), meta: { title: '项目管理' } },
{ path: 'meetings', name: 'admin-meetings', component: () => import('@/views/admin/Meetings.vue'), meta: { title: '会议全览' } },
{ path: 'department', name: 'admin-department', component: () => import('@/views/admin/Department.vue'), meta: { title: '科室管理' } },
{ path: 'title', name: 'admin-title', component: () => import('@/views/admin/Title.vue'), meta: { title: '职称管理' } },
diff --git a/ry-vue3/src/views/admin/Projects.vue b/ry-vue3/src/views/admin/Projects.vue
deleted file mode 100644
index 1336072..0000000
--- a/ry-vue3/src/views/admin/Projects.vue
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
首页 / 项目全览
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 查询
- 重置
-
-
-
-
-
-
-
-
-
- {{ STATUS_LABEL[row.status] || row.status }}
-
-
-
-
- {{ row.isFinished === '1' ? '已结题' : '未结题' }}
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file