|
@@ -90,6 +90,17 @@ const routes = [
|
|
|
title: '院校详情'
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'cooperativecolleges/professionalintroduction',
|
|
|
+ name: 'ProfessionalIntroductionIndex',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/CooperativeColleges/CollegesDetails/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '专业详情'
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
path: 'skilltraining',
|
|
|
name: 'SkillTrainingIndex',
|
|
@@ -101,7 +112,8 @@ const routes = [
|
|
|
{
|
|
|
path: 'skilltraining/skillpackage',
|
|
|
name: 'SkillPackageIndex',
|
|
|
- component: () => import('@/views/SkillTraining/SkillPackage/SkillPackageIndex.vue'),
|
|
|
+ component: () =>
|
|
|
+ import('@/views/SkillTraining/SkillPackage/SkillPackageIndex.vue'),
|
|
|
meta: {
|
|
|
title: '技能包'
|
|
|
}
|
|
@@ -109,7 +121,10 @@ const routes = [
|
|
|
{
|
|
|
path: 'skilltraining/selectedcourses',
|
|
|
name: 'SelectedCoursesIndex',
|
|
|
- component: () => import('@/views/SkillTraining/SkillPackage/SelectedCourses/SelectedCoursesIndex.vue'),
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/SkillTraining/SkillPackage/SelectedCourses/SelectedCoursesIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '精选课程'
|
|
|
}
|
|
@@ -117,7 +132,8 @@ const routes = [
|
|
|
{
|
|
|
path: 'skilltraining/coursevideo',
|
|
|
name: 'CourseVideoIndex',
|
|
|
- component: () => import('@/views/SkillTraining/CourseVideo/CourseVideoIndex.vue'),
|
|
|
+ component: () =>
|
|
|
+ import('@/views/SkillTraining/CourseVideo/CourseVideoIndex.vue'),
|
|
|
meta: {
|
|
|
title: '课程详情'
|
|
|
}
|
|
@@ -130,10 +146,21 @@ const routes = [
|
|
|
title: '创业指引'
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'workguide/add',
|
|
|
+ name: 'AddWorkGuideIndex',
|
|
|
+ component: () => import('@/views/WorkGuide/AddWorkGuide/AddWorkGuideIndex.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '提交创业计划'
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
path: 'workguide/details',
|
|
|
name: 'WorkGuideDetailsIndex',
|
|
|
- component: () => import('@/views/WorkGuide/WorkGuideDetails/WorkGuideDetailsIndex.vue'),
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/WorkGuide/WorkGuideDetails/WorkGuideDetailsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '创业计划详情'
|
|
|
}
|
|
@@ -151,20 +178,57 @@ const routes = [
|
|
|
path: 'educationpromote/details',
|
|
|
name: 'EducationPromoteDetailsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/EducationPromote/EducationPromoteDetails/EducationPromoteDetailsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/EducationPromote/EducationPromoteDetails/EducationPromoteDetailsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '学历提升详情'
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'educationpromote/video',
|
|
|
+ name: 'CourseVideoIndex',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/EducationPromote/CourseVideo/CourseVideoIndex.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '课程详情'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'educationpromote/courses',
|
|
|
+ name: 'SelectedCoursesIndex',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/EducationPromote/ProfessionalIntroduction/SelectedCourses/SelectedCoursesIndex.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '更多课程'
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
path: 'educationpromote/recruitstudents',
|
|
|
name: 'RecruitStudentsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/EducationPromote/RecruitStudents/RecruitStudentsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/EducationPromote/RecruitStudents/RecruitStudentsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '招生简章'
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'educationpromote/professionalintroduction',
|
|
|
+ name: 'ProfessionalIntroductionIndex',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/EducationPromote/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '专业详情'
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
path: 'adaptivetraining',
|
|
|
name: 'AdaptiveTrainingIndex',
|
|
@@ -178,7 +242,9 @@ const routes = [
|
|
|
path: 'adaptivetraining/onlinecoursedetails',
|
|
|
name: 'OnlineCourseDetailsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/AdaptiveTraining/OnlineCourseDetails/OnlineCourseDetailsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/AdaptiveTraining/OnlineCourseDetails/OnlineCourseDetailsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '线上课程详情'
|
|
|
}
|
|
@@ -187,7 +253,9 @@ const routes = [
|
|
|
path: 'adaptivetraining/offlinecoursedetails',
|
|
|
name: 'OfflineCourseDetailsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/AdaptiveTraining/OfflineCourseDetails/OfflineCourseDetailsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/AdaptiveTraining/OfflineCourseDetails/OfflineCourseDetailsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '线下课程详情'
|
|
|
}
|
|
@@ -222,8 +290,7 @@ const routes = [
|
|
|
{
|
|
|
path: 'personalcenter/resumeEdit',
|
|
|
name: 'ResumeEdit',
|
|
|
- component: () =>
|
|
|
- import('@/views/PersonalCenter/Resume/ResumeEdit.vue'),
|
|
|
+ component: () => import('@/views/PersonalCenter/Resume/ResumeEdit.vue'),
|
|
|
meta: {
|
|
|
title: '编辑简历'
|
|
|
}
|
|
@@ -268,7 +335,9 @@ const routes = [
|
|
|
path: 'personalcenter/skillsTrainingdetails',
|
|
|
name: 'SkillsTrainingDetailsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/SkillsTrainingDetailsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/SkillsTrainingDetailsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '我的技能培训详情'
|
|
|
}
|
|
@@ -277,7 +346,9 @@ const routes = [
|
|
|
path: 'personalcenter/coursevideo',
|
|
|
name: 'CourseVideoIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/CourseVideo/CourseVideoIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/CourseVideo/CourseVideoIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '课程视频'
|
|
|
}
|
|
@@ -286,7 +357,9 @@ const routes = [
|
|
|
path: 'personalcenter/achievementcertificate',
|
|
|
name: 'AchievementCertificateIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/AchievementCertificate/AchievementCertificateIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/AchievementCertificate/AchievementCertificateIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '成绩与证书'
|
|
|
}
|
|
@@ -295,7 +368,9 @@ const routes = [
|
|
|
path: 'personalcenter/progresspoints',
|
|
|
name: 'ProgressPointsIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/ProgressPoints/ProgressPointsIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/ProgressPoints/ProgressPointsIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '进步积分'
|
|
|
}
|
|
@@ -304,7 +379,9 @@ const routes = [
|
|
|
path: 'personalcenter/progresspoints/integralrule',
|
|
|
name: 'IntegralRuleIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/ProgressPoints/IntegralRule/IntegralRuleIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/ProgressPoints/IntegralRule/IntegralRuleIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '积分规则'
|
|
|
}
|
|
@@ -313,7 +390,9 @@ const routes = [
|
|
|
path: 'applyeducationauth',
|
|
|
name: 'ApplyEducationAuthIndex',
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/ApplyEducationAuth/ApplyEducationAuthIndex.vue'),
|
|
|
+ import(
|
|
|
+ '@/views/PersonalCenter/ApplyEducationAuth/ApplyEducationAuthIndex.vue'
|
|
|
+ ),
|
|
|
meta: {
|
|
|
title: '退役军人认证'
|
|
|
}
|
|
@@ -321,8 +400,7 @@ const routes = [
|
|
|
{
|
|
|
path: 'newscenter',
|
|
|
name: 'NewsCenterIndex',
|
|
|
- component: () =>
|
|
|
- import('@/views/NewsCenter/NewsCenterIndex.vue'),
|
|
|
+ component: () => import('@/views/NewsCenter/NewsCenterIndex.vue'),
|
|
|
meta: {
|
|
|
title: '新闻中心'
|
|
|
}
|