优化排课

This commit is contained in:
2026-07-24 19:35:49 +08:00 Unverified
parent 6538b6080a
commit e6d8eb0662
17 changed files with 4073 additions and 6 deletions
+7
View File
@@ -79,6 +79,13 @@ const navigationGroups = computed<NavigationGroup[]>(() => [
{ path: '/base-data/course-categories', label: '课程分类' },
),
{ path: '/courses', label: '课程库' },
...whenVisible(
hasAnyRole(['SuperAdmin', 'AcademicAdmin', 'CollegeAdmin', 'Teacher']),
{
path: '/teaching-preferences',
label: isTeacher.value ? '授课科目申报' : '授课资格审核',
},
),
...whenVisible(isTeachingAdmin.value, { path: '/curriculum', label: '培养方案' }),
...whenVisible(isTeachingAdmin.value, { path: '/teaching-tasks', label: '教学任务' }),
],