|
@@ -1,461 +1,464 @@
|
|
|
-import Vue from 'vue'
|
|
|
-import VueRouter from 'vue-router'
|
|
|
-import Layout from '@/layout'
|
|
|
-import store from '@/store'
|
|
|
+import Vue from "vue";
|
|
|
+import VueRouter from "vue-router";
|
|
|
+import Layout from "@/layout";
|
|
|
+import store from "@/store";
|
|
|
+import { stringifyQuery, parseQuery } from "@/utils/query";
|
|
|
|
|
|
-Vue.use(VueRouter)
|
|
|
+Vue.use(VueRouter);
|
|
|
|
|
|
const routes = [
|
|
|
{
|
|
|
- path: '/',
|
|
|
+ path: "/",
|
|
|
component: Layout,
|
|
|
children: [
|
|
|
{
|
|
|
- path: '',
|
|
|
- name: 'Index',
|
|
|
- component: () => import('@/views/Home/HomeIndex.vue'),
|
|
|
+ path: "",
|
|
|
+ name: "Index",
|
|
|
+ component: () => import("@/views/Home/HomeIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '首页'
|
|
|
- }
|
|
|
+ title: "首页",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'policyadvice',
|
|
|
- name: 'PolicyAdvice',
|
|
|
- component: () => import('@/views/PolicyAdvice/PolicyAdviceIndex.vue'),
|
|
|
+ path: "policyadvice",
|
|
|
+ name: "PolicyAdvice",
|
|
|
+ component: () => import("@/views/PolicyAdvice/PolicyAdviceIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '政策资讯'
|
|
|
- }
|
|
|
+ title: "政策资讯",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'bannerdetails',
|
|
|
- name: 'BannerDetailsIndex',
|
|
|
- component: () => import('@/views/PolicyAdvice/BannerDetails/BannerDetailsIndex.vue'),
|
|
|
+ path: "bannerdetails",
|
|
|
+ name: "BannerDetailsIndex",
|
|
|
+ component: () =>
|
|
|
+ import("@/views/PolicyAdvice/BannerDetails/BannerDetailsIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '详情'
|
|
|
- }
|
|
|
+ title: "详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'recruitmentemployment',
|
|
|
- name: 'RecruitmentEmploymentIndex',
|
|
|
+ path: "recruitmentemployment",
|
|
|
+ name: "RecruitmentEmploymentIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/RecruitmentEmployment/RecruitmentEmploymentIndex.vue'
|
|
|
+ "@/views/RecruitmentEmployment/RecruitmentEmploymentIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '招聘就业'
|
|
|
- }
|
|
|
+ title: "招聘就业",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'cooperativeenterprise',
|
|
|
- name: 'CooperativeEnterpriseIndex',
|
|
|
+ path: "cooperativeenterprise",
|
|
|
+ name: "CooperativeEnterpriseIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/CooperativeEnterprise/CooperativeEnterpriseIndex.vue'
|
|
|
+ "@/views/CooperativeEnterprise/CooperativeEnterpriseIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '合作企业'
|
|
|
- }
|
|
|
+ title: "合作企业",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'enterprisedetails',
|
|
|
- name: 'EnterpriseDetailsIndex',
|
|
|
+ path: "enterprisedetails",
|
|
|
+ name: "EnterpriseDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/CooperativeEnterprise/EnterpriseDetails/EnterpriseDetailsIndex.vue'
|
|
|
+ "@/views/CooperativeEnterprise/EnterpriseDetails/EnterpriseDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '企业详情'
|
|
|
- }
|
|
|
+ title: "企业详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'enterprisePosition',
|
|
|
- name: 'EnterprisePositionIndex',
|
|
|
+ path: "enterprisePosition",
|
|
|
+ name: "EnterprisePositionIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/CooperativeEnterprise/EnterprisePosition/EnterprisePositionIndex.vue'
|
|
|
+ "@/views/CooperativeEnterprise/EnterprisePosition/EnterprisePositionIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '职位详情'
|
|
|
- }
|
|
|
+ title: "职位详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'cooperativecolleges',
|
|
|
- name: 'CooperativeCollegesIndex',
|
|
|
+ path: "cooperativecolleges",
|
|
|
+ name: "CooperativeCollegesIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/CooperativeColleges/CooperativeCollegesIndex.vue'),
|
|
|
+ import("@/views/CooperativeColleges/CooperativeCollegesIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '合作院校'
|
|
|
- }
|
|
|
+ title: "合作院校",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'collegesdetails',
|
|
|
- name: 'CollegesDetailsIndex',
|
|
|
+ path: "collegesdetails",
|
|
|
+ name: "CollegesDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/CooperativeColleges/CollegesDetails/CollegesDetailsIndex.vue'
|
|
|
+ "@/views/CooperativeColleges/CollegesDetails/CollegesDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '院校详情'
|
|
|
- }
|
|
|
+ title: "院校详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'cooperativecolleges/professionalintroduction',
|
|
|
- name: 'ProfessionalIntroductionIndex',
|
|
|
+ path: "cooperativecolleges/professionalintroduction",
|
|
|
+ name: "ProfessionalIntroductionIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/CooperativeColleges/CollegesDetails/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue'
|
|
|
+ "@/views/CooperativeColleges/CollegesDetails/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '专业详情'
|
|
|
- }
|
|
|
+ title: "专业详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'skilltraining',
|
|
|
- name: 'SkillTrainingIndex',
|
|
|
- component: () => import('@/views/SkillTraining/SkillTrainingIndex.vue'),
|
|
|
+ path: "skilltraining",
|
|
|
+ name: "SkillTrainingIndex",
|
|
|
+ component: () => import("@/views/SkillTraining/SkillTrainingIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '技能培训'
|
|
|
- }
|
|
|
+ title: "技能培训",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'skilltraining/skillpackage',
|
|
|
- name: 'SkillPackageIndex',
|
|
|
+ path: "skilltraining/skillpackage",
|
|
|
+ name: "SkillPackageIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/SkillTraining/SkillPackage/SkillPackageIndex.vue'),
|
|
|
+ import("@/views/SkillTraining/SkillPackage/SkillPackageIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '技能包'
|
|
|
- }
|
|
|
+ title: "技能包",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'skilltraining/selectedcourses',
|
|
|
- name: 'SelectedCoursesIndex',
|
|
|
+ path: "skilltraining/selectedcourses",
|
|
|
+ name: "SelectedCoursesIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/SkillTraining/SkillPackage/SelectedCourses/SelectedCoursesIndex.vue'
|
|
|
+ "@/views/SkillTraining/SkillPackage/SelectedCourses/SelectedCoursesIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '精选课程'
|
|
|
- }
|
|
|
+ title: "精选课程",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'skilltraining/coursevideo',
|
|
|
- name: 'CourseVideoIndex',
|
|
|
+ path: "skilltraining/coursevideo",
|
|
|
+ name: "CourseVideoIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/SkillTraining/CourseVideo/CourseVideoIndex.vue'),
|
|
|
+ import("@/views/SkillTraining/CourseVideo/CourseVideoIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '课程详情'
|
|
|
- }
|
|
|
+ title: "课程详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'workguide',
|
|
|
- name: 'WorkGuideIndex',
|
|
|
- component: () => import('@/views/WorkGuide/WorkGuideIndex.vue'),
|
|
|
+ path: "workguide",
|
|
|
+ name: "WorkGuideIndex",
|
|
|
+ component: () => import("@/views/WorkGuide/WorkGuideIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '创业指引'
|
|
|
- }
|
|
|
+ title: "创业指引",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'workguide/add',
|
|
|
- name: 'AddWorkGuideIndex',
|
|
|
- component: () => import('@/views/WorkGuide/AddWorkGuide/AddWorkGuideIndex.vue'),
|
|
|
+ path: "workguide/add",
|
|
|
+ name: "AddWorkGuideIndex",
|
|
|
+ component: () =>
|
|
|
+ import("@/views/WorkGuide/AddWorkGuide/AddWorkGuideIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '提交创业计划'
|
|
|
- }
|
|
|
+ title: "提交创业计划",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'workguide/details',
|
|
|
- name: 'WorkGuideDetailsIndex',
|
|
|
+ path: "workguide/details",
|
|
|
+ name: "WorkGuideDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/WorkGuide/WorkGuideDetails/WorkGuideDetailsIndex.vue'
|
|
|
+ "@/views/WorkGuide/WorkGuideDetails/WorkGuideDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '创业计划详情'
|
|
|
- }
|
|
|
+ title: "创业计划详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote',
|
|
|
- name: 'EducationPromoteIndex',
|
|
|
+ path: "educationpromote",
|
|
|
+ name: "EducationPromoteIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/EducationPromote/EducationPromoteIndex.vue'),
|
|
|
+ import("@/views/EducationPromote/EducationPromoteIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '学历提升'
|
|
|
- }
|
|
|
+ title: "学历提升",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote/details',
|
|
|
- name: 'EducationPromoteDetailsIndex',
|
|
|
+ path: "educationpromote/details",
|
|
|
+ name: "EducationPromoteDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/EducationPromote/EducationPromoteDetails/EducationPromoteDetailsIndex.vue'
|
|
|
+ "@/views/EducationPromote/EducationPromoteDetails/EducationPromoteDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '学历提升详情'
|
|
|
- }
|
|
|
+ title: "学历提升详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote/video',
|
|
|
- name: 'CourseVideoIndex',
|
|
|
+ path: "educationpromote/video",
|
|
|
+ name: "CourseVideoIndex",
|
|
|
component: () =>
|
|
|
- import(
|
|
|
- '@/views/EducationPromote/CourseVideo/CourseVideoIndex.vue'
|
|
|
- ),
|
|
|
+ import("@/views/EducationPromote/CourseVideo/CourseVideoIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '课程详情'
|
|
|
- }
|
|
|
+ title: "课程详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote/courses',
|
|
|
- name: 'SelectedCoursesIndex',
|
|
|
+ path: "educationpromote/courses",
|
|
|
+ name: "SelectedCoursesIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/EducationPromote/ProfessionalIntroduction/SelectedCourses/SelectedCoursesIndex.vue'
|
|
|
+ "@/views/EducationPromote/ProfessionalIntroduction/SelectedCourses/SelectedCoursesIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '更多课程'
|
|
|
- }
|
|
|
+ title: "更多课程",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote/recruitstudents',
|
|
|
- name: 'RecruitStudentsIndex',
|
|
|
+ path: "educationpromote/recruitstudents",
|
|
|
+ name: "RecruitStudentsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/EducationPromote/RecruitStudents/RecruitStudentsIndex.vue'
|
|
|
+ "@/views/EducationPromote/RecruitStudents/RecruitStudentsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '招生简章'
|
|
|
- }
|
|
|
+ title: "招生简章",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'educationpromote/professionalintroduction',
|
|
|
- name: 'ProfessionalIntroductionIndex',
|
|
|
+ path: "educationpromote/professionalintroduction",
|
|
|
+ name: "ProfessionalIntroductionIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/EducationPromote/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue'
|
|
|
+ "@/views/EducationPromote/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '专业详情'
|
|
|
- }
|
|
|
+ title: "专业详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'adaptivetraining',
|
|
|
- name: 'AdaptiveTrainingIndex',
|
|
|
+ path: "adaptivetraining",
|
|
|
+ name: "AdaptiveTrainingIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/AdaptiveTraining/AdaptiveTrainingIndex.vue'),
|
|
|
+ import("@/views/AdaptiveTraining/AdaptiveTrainingIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '适应性培训'
|
|
|
- }
|
|
|
+ title: "适应性培训",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'adaptivetraining/onlinecoursedetails',
|
|
|
- name: 'OnlineCourseDetailsIndex',
|
|
|
+ path: "adaptivetraining/onlinecoursedetails",
|
|
|
+ name: "OnlineCourseDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/AdaptiveTraining/OnlineCourseDetails/OnlineCourseDetailsIndex.vue'
|
|
|
+ "@/views/AdaptiveTraining/OnlineCourseDetails/OnlineCourseDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '线上课程详情'
|
|
|
- }
|
|
|
+ title: "线上课程详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'adaptivetraining/offlinecoursedetails',
|
|
|
- name: 'OfflineCourseDetailsIndex',
|
|
|
+ path: "adaptivetraining/offlinecoursedetails",
|
|
|
+ name: "OfflineCourseDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/AdaptiveTraining/OfflineCourseDetails/OfflineCourseDetailsIndex.vue'
|
|
|
+ "@/views/AdaptiveTraining/OfflineCourseDetails/OfflineCourseDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '线下课程详情'
|
|
|
- }
|
|
|
+ title: "线下课程详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter',
|
|
|
- name: 'PersonalCenterIndex',
|
|
|
+ path: "personalcenter",
|
|
|
+ name: "PersonalCenterIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/PersonalCenterIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/PersonalCenterIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的'
|
|
|
- }
|
|
|
+ title: "我的",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/setting',
|
|
|
- name: 'SettingIndex',
|
|
|
+ path: "personalcenter/setting",
|
|
|
+ name: "SettingIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/Setting/SettingIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/Setting/SettingIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '设置'
|
|
|
- }
|
|
|
+ title: "设置",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/resume',
|
|
|
- name: 'ResumeIndex',
|
|
|
+ path: "personalcenter/resume",
|
|
|
+ name: "ResumeIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/Resume/ResumeIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/Resume/ResumeIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的简历'
|
|
|
- }
|
|
|
+ title: "我的简历",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/resumeEdit',
|
|
|
- name: 'ResumeEdit',
|
|
|
- component: () => import('@/views/PersonalCenter/Resume/ResumeEdit.vue'),
|
|
|
+ path: "personalcenter/resumeEdit",
|
|
|
+ name: "ResumeEdit",
|
|
|
+ component: () => import("@/views/PersonalCenter/Resume/ResumeEdit.vue"),
|
|
|
meta: {
|
|
|
- title: '编辑简历'
|
|
|
- }
|
|
|
+ title: "编辑简历",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/deliver',
|
|
|
- name: 'DeliverIndex',
|
|
|
+ path: "personalcenter/deliver",
|
|
|
+ name: "DeliverIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/Deliver/DeliverIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/Deliver/DeliverIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的投递'
|
|
|
- }
|
|
|
+ title: "我的投递",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/interview',
|
|
|
- name: 'InterviewIndex',
|
|
|
+ path: "personalcenter/interview",
|
|
|
+ name: "InterviewIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/Interview/InterviewIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/Interview/InterviewIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的面试'
|
|
|
- }
|
|
|
+ title: "我的面试",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/evaluate',
|
|
|
- name: 'EvaluateIndex',
|
|
|
+ path: "personalcenter/evaluate",
|
|
|
+ name: "EvaluateIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/Evaluate/EvaluateIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/Evaluate/EvaluateIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的评价'
|
|
|
- }
|
|
|
+ title: "我的评价",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/skilltraining',
|
|
|
- name: 'SkillTrainingIndex',
|
|
|
+ path: "personalcenter/skilltraining",
|
|
|
+ name: "SkillTrainingIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/PersonalCenter/SkillTraining/SkillTrainingIndex.vue'),
|
|
|
+ import("@/views/PersonalCenter/SkillTraining/SkillTrainingIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '我的技能培训'
|
|
|
- }
|
|
|
+ title: "我的技能培训",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/skillsTrainingdetails',
|
|
|
- name: 'SkillsTrainingDetailsIndex',
|
|
|
+ path: "personalcenter/skillsTrainingdetails",
|
|
|
+ name: "SkillsTrainingDetailsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/SkillsTrainingDetailsIndex.vue'
|
|
|
+ "@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/SkillsTrainingDetailsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '我的技能培训详情'
|
|
|
- }
|
|
|
+ title: "我的技能培训详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/coursevideo',
|
|
|
- name: 'CourseVideoIndex',
|
|
|
+ path: "personalcenter/coursevideo",
|
|
|
+ name: "CourseVideoIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/CourseVideo/CourseVideoIndex.vue'
|
|
|
+ "@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/CourseVideo/CourseVideoIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '课程视频'
|
|
|
- }
|
|
|
+ title: "课程视频",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/achievementcertificate',
|
|
|
- name: 'AchievementCertificateIndex',
|
|
|
+ path: "personalcenter/achievementcertificate",
|
|
|
+ name: "AchievementCertificateIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/AchievementCertificate/AchievementCertificateIndex.vue'
|
|
|
+ "@/views/PersonalCenter/SkillTraining/SkillsTrainingDetails/AchievementCertificate/AchievementCertificateIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '成绩与证书'
|
|
|
- }
|
|
|
+ title: "成绩与证书",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/progresspoints',
|
|
|
- name: 'ProgressPointsIndex',
|
|
|
+ path: "personalcenter/progresspoints",
|
|
|
+ name: "ProgressPointsIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/ProgressPoints/ProgressPointsIndex.vue'
|
|
|
+ "@/views/PersonalCenter/ProgressPoints/ProgressPointsIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '进步积分'
|
|
|
- }
|
|
|
+ title: "进步积分",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'personalcenter/progresspoints/integralrule',
|
|
|
- name: 'IntegralRuleIndex',
|
|
|
+ path: "personalcenter/progresspoints/integralrule",
|
|
|
+ name: "IntegralRuleIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/ProgressPoints/IntegralRule/IntegralRuleIndex.vue'
|
|
|
+ "@/views/PersonalCenter/ProgressPoints/IntegralRule/IntegralRuleIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '积分规则'
|
|
|
- }
|
|
|
+ title: "积分规则",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'applyeducationauth',
|
|
|
- name: 'ApplyEducationAuthIndex',
|
|
|
+ path: "applyeducationauth",
|
|
|
+ name: "ApplyEducationAuthIndex",
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/PersonalCenter/ApplyEducationAuth/ApplyEducationAuthIndex.vue'
|
|
|
+ "@/views/PersonalCenter/ApplyEducationAuth/ApplyEducationAuthIndex.vue"
|
|
|
),
|
|
|
meta: {
|
|
|
- title: '退役军人认证'
|
|
|
- }
|
|
|
+ title: "退役军人认证",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'newscenter',
|
|
|
- name: 'NewsCenterIndex',
|
|
|
- component: () => import('@/views/NewsCenter/NewsCenterIndex.vue'),
|
|
|
+ path: "newscenter",
|
|
|
+ name: "NewsCenterIndex",
|
|
|
+ component: () => import("@/views/NewsCenter/NewsCenterIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '新闻中心'
|
|
|
- }
|
|
|
+ title: "新闻中心",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'newsdetails',
|
|
|
- name: 'NewsDetailsIndex',
|
|
|
+ path: "newsdetails",
|
|
|
+ name: "NewsDetailsIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/NewsCenter/NewsDetails/NewsDetailsIndex.vue'),
|
|
|
+ import("@/views/NewsCenter/NewsDetails/NewsDetailsIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '新闻详情'
|
|
|
- }
|
|
|
+ title: "新闻详情",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
- path: 'noticedetails',
|
|
|
- name: 'NoticeDetailsIndex',
|
|
|
+ path: "noticedetails",
|
|
|
+ name: "NoticeDetailsIndex",
|
|
|
component: () =>
|
|
|
- import('@/views/NewsCenter/NoticeDetails/NoticeDetailsIndex.vue'),
|
|
|
+ import("@/views/NewsCenter/NoticeDetails/NoticeDetailsIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '通知详情'
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
+ title: "通知详情",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- path: '/login',
|
|
|
- name: 'Login',
|
|
|
- component: () => import('@/views/Login/LoginIndex.vue'),
|
|
|
+ path: "/login",
|
|
|
+ name: "Login",
|
|
|
+ component: () => import("@/views/Login/LoginIndex.vue"),
|
|
|
meta: {
|
|
|
- title: '登录'
|
|
|
- }
|
|
|
- }
|
|
|
-]
|
|
|
+ title: "登录",
|
|
|
+ },
|
|
|
+ },
|
|
|
+];
|
|
|
|
|
|
const router = new VueRouter({
|
|
|
- mode: 'history',
|
|
|
- routes
|
|
|
-})
|
|
|
+ mode: "history",
|
|
|
+ stringifyQuery: stringifyQuery, // 序列化query参数
|
|
|
+ parseQuery: parseQuery, // 反序列化query参数
|
|
|
+ routes,
|
|
|
+});
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
/* 路由发生变化修改页面title */
|
|
|
if (to.meta.title) {
|
|
|
- document.title = to.meta.title
|
|
|
+ document.title = to.meta.title;
|
|
|
}
|
|
|
if (store.state.user.token && !store.state.user.isLogin) {
|
|
|
- store.dispatch('GetUserInfo')
|
|
|
+ store.dispatch("GetUserInfo");
|
|
|
}
|
|
|
- next()
|
|
|
-})
|
|
|
+ next();
|
|
|
+});
|
|
|
|
|
|
-export default router
|
|
|
+export default router;
|