This commit is contained in:
sajjadtalkhabi
2026-05-15 17:12:51 +03:30
parent b8ced45375
commit c82701888a
101 changed files with 8125 additions and 96 deletions
+36
View File
@@ -65,6 +65,42 @@ const menuItems = computed(() => [
to: { name: 'student-courses' },
active: ['student-courses', 'student-course-details'].includes(route.name),
},
{
title: 'دوره‌های آموزشی',
icon: 'book',
to: { name: 'student-terms' },
active: [
'student-terms',
'student-term-details',
'student-lesson-details',
'student-session-details',
'student-exam',
].includes(route.name),
},
{
title: 'سامانه اعزام',
icon: 'paper-plane-right',
to: { name: 'student-missionary' },
active: route.name === 'student-missionary',
},
{
title: 'خدمات',
icon: 'paper-plane',
to: { name: 'student-services' },
active: route.name === 'student-services',
},
{
title: 'مشاوره',
icon: 'chat',
to: { name: 'student-consultants' },
active: route.name === 'student-consultants',
},
{
title: 'گواهینامه ها',
icon: 'scroll',
to: { name: 'student-certificates' },
active: route.name === 'student-certificates',
},
{
title: 'ویرایش پروفایل',
icon: 'user',