Forráskód Böngészése

签到码二维码前端重新生成

zaijin 2 éve
szülő
commit
98c61b538a

+ 2 - 0
.gitignore

@@ -24,3 +24,5 @@ pnpm-debug.log*
 *.njsproj
 *.sln
 *.sw?
+*.lock
+*.log

+ 2 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "veterans_client_web",
-  "version": "0.1.0",
+  "version": "0.1.1",
   "private": true,
   "scripts": {
     "serve": "vue-cli-service serve --mode dev",
@@ -12,6 +12,7 @@
   "dependencies": {
     "axios": "^0.27.2",
     "core-js": "^3.8.3",
+    "crypto-js": "^4.1.1",
     "element-china-area-data": "^5.0.2",
     "element-ui": "2.15.3",
     "js-cookie": "^3.0.1",

+ 2 - 2
src/layout/index.vue

@@ -21,13 +21,13 @@
         </div>
         <div class="header-box-right">
           <div class="header-box-right-search">
-            <el-input
+            <!-- <el-input
               placeholder="请输入搜索内容"
               size="small"
               v-model="searchValue"
             >
               <i slot="prefix" class="el-input__icon el-icon-search"></i>
-            </el-input>
+            </el-input> -->
           </div>
           <div class="header-box-right-user" v-if="isLogin">
             {{ getDateText() }}好,<router-link

+ 1 - 0
src/main.js

@@ -11,6 +11,7 @@ import 'swiper/css/swiper.css'
 // 富文本编辑器样式
 import 'quill/dist/quill.core.css'
 import 'quill/dist/quill.snow.css'
+
 Vue.use(VueAwesomeSwiper)
 Vue.use(ElementUI)
 

+ 243 - 240
src/router/index.js

@@ -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;

+ 85 - 0
src/utils/encryption.js

@@ -0,0 +1,85 @@
+// 按需引入 CryptoJS 需要的组件
+const CryptoJS = require("crypto-js/core");
+const Latin1 = require("crypto-js/enc-latin1");
+const AES = require("crypto-js/aes");
+const ZeroPadding = require("crypto-js/pad-zeropadding");
+const Utf8 = require("crypto-js/enc-utf8");
+const Base64 = require("crypto-js/enc-base64");
+/*
+ * 加密 解密
+ */
+const baseCryptoCode = "1234veterans4321"; // 这个私钥每个项目指定一个唯一。更换密钥,请确认16位
+
+const getKeyHex = (cryptoCode) => Latin1.parse(cryptoCode || baseCryptoCode);
+
+const getIvHex = () => Latin1.parse(baseCryptoCode);
+
+/**
+ * 加密
+ * @param {String} key
+ * @param {String} cryptoCode
+ * @returns {string}
+ */
+export const getEncrypt = (key, cryptoCode) => {
+  let keyHex = getKeyHex(cryptoCode);
+  let ivHex = getIvHex();
+  try {
+    key = JSON.stringify(key);
+  } catch (e) {
+    console.warn(e);
+  }
+  return AES.encrypt(key, keyHex, {
+    mode: CryptoJS.mode.CBC,
+    padding: ZeroPadding,
+    iv: ivHex,
+  }).toString();
+};
+
+/**
+ * 加密后转base64
+ * @param {String}} key
+ * @param {String} cryptoCode
+ */
+export const getEncryptToBase64 = (key, cryptoCode) => {
+  let encryptStr = getEncrypt(key, cryptoCode);
+  let wordArray = Utf8.parse(encryptStr);
+  return Base64.stringify(wordArray);
+};
+
+/**
+ * 解密
+ * @param data
+ * @returns {string}
+ */
+export const getDecrypt = (data) => {
+  let keyHex = getKeyHex();
+  let ivHex = getIvHex();
+  let decrypted = AES.decrypt(
+    {
+      ciphertext: Base64.parse(data),
+    },
+    keyHex,
+    {
+      mode: CryptoJS.mode.CBC,
+      padding: ZeroPadding,
+      iv: ivHex,
+    }
+  ).toString(Utf8);
+  try {
+    decrypted = JSON.parse(decrypted);
+  } catch (e) {
+    console.warn(e);
+  }
+  return decrypted;
+};
+
+/**
+ * 对base64数据解密  先解析base64,在做解密
+ * @param {String} data
+ * @returns {string}
+ */
+export const getDecryptByBase64 = (data) => {
+  let parsedWordArray = Base64.parse(data);
+  let decryptStr = parsedWordArray.toString(Utf8);
+  return getDecrypt(decryptStr);
+};

+ 105 - 0
src/utils/query.js

@@ -0,0 +1,105 @@
+import {
+  getEncryptToBase64 as encrypt,
+  getDecryptByBase64 as decrypt,
+} from "./encryption";
+const encodeReserveRE = /[!'()*]/g;
+const encodeReserveReplacer = (c) => "%" + c.charCodeAt(0).toString(16);
+const commaRE = /%2C/g;
+
+const encode = (str) =>
+  encodeURIComponent(str)
+    .replace(encodeReserveRE, encodeReserveReplacer)
+    .replace(commaRE, ",");
+
+const decode = decodeURIComponent;
+
+/**
+ * 判断字符串是否是base64
+ * @param { string } str
+ * @returns { boolean }
+ */
+function isBase64(str) {
+  if (str === "" || str.trim() === "") {
+    return false;
+  }
+  try {
+    return btoa(atob(str)) == str;
+  } catch (err) {
+    return false;
+  }
+}
+
+/**
+ * 序列化对象 并加密
+ * @param {Object} obj
+ */
+export const stringifyQuery = (obj) => {
+  const res = obj
+    ? Object.keys(obj)
+        .map((key) => {
+          const val = obj[key];
+
+          if (val === undefined) {
+            return "";
+          }
+
+          if (val === null) {
+            return encode(key);
+          }
+
+          if (Array.isArray(val)) {
+            const result = [];
+            val.forEach((val2) => {
+              if (val2 === undefined) {
+                return;
+              }
+              if (val2 === null) {
+                result.push(encode(key));
+              } else {
+                result.push(encode(key) + "=" + encode(val2));
+              }
+            });
+            return result.join("&");
+          }
+
+          return encode(key) + "=" + encode(val);
+        })
+        .filter((x) => x.length > 0)
+        .join("&")
+    : null;
+
+  return res ? `?${encrypt(res)}` : "";
+};
+
+/**
+ * 解密  反序列化字符串参数
+ * @param {String}} query
+ */
+export const parseQuery = (query) => {
+  const res = {};
+
+  query = query.trim().replace(/^(\?|#|&)/, "");
+
+  if (!query) {
+    return res;
+  }
+
+  // 解密
+  query = isBase64(query) ? decrypt(query) : query;
+
+  query.split("&").forEach((param) => {
+    const parts = param.replace(/\+/g, " ").split("=");
+    const key = decode(parts.shift());
+    const val = parts.length > 0 ? decode(parts.join("=")) : null;
+
+    if (res[key] === undefined) {
+      res[key] = val;
+    } else if (Array.isArray(res[key])) {
+      res[key].push(val);
+    } else {
+      res[key] = [res[key], val];
+    }
+  });
+
+  return res;
+};

+ 4 - 3
src/views/CooperativeColleges/CollegesDetails/CollegesDetailsIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-16 10:40:45
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-29 13:59:56
+ * @LastEditTime: 2022-12-15 10:30:27
  * @FilePath: \veterans_client_web\src\views\CooperativeColleges\CollegesDetails\CollegesDetailsIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -34,7 +34,7 @@
               class="edhb-left-info-link"
               @click="jumpExternalLink(details.schoolUrl)"
             >
-              {{ details.schoolUrl || "-" }}
+              访问官网:{{ details.schoolUrl || "-" }}
             </div>
           </div>
         </div>
@@ -317,10 +317,11 @@ export default {
             margin-bottom: 5px;
           }
           &-link {
-            font-size: 14px;
+            font-size: 16px;
             color: #fff;
             font-family: SourceHanSansCN;
             cursor: pointer;
+            margin-top: 10px;
           }
         }
       }

+ 1 - 1
src/views/Home/HomeIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-10 11:26:40
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-30 16:41:19
+ * @LastEditTime: 2022-12-15 10:18:02
  * @FilePath: \veterans_client_web\src\views\Home\HomeIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->

+ 4 - 4
src/views/Home/components/HeaderBanner.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-22 09:14:32
  * @LastEditors: 空白格
- * @LastEditTime: 2022-09-05 17:01:03
+ * @LastEditTime: 2022-12-15 10:32:40
  * @FilePath: \veterans_client_web\src\views\Home\components\HeaderBanner.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -23,12 +23,12 @@
           @click="jumpPage('/bannerdetails', { id: item.id, type: 4 })"
         >
           <div slot="placeholder" class="image-slot">
-            加载图片中<span class="dot">...</span>
+            图片加载中<span class="dot">...</span>
           </div>
         </el-image>
         <el-image class="image" :src="item.bannerUrl" v-else fit="cover">
           <div slot="placeholder" class="image-slot">
-            加载图片中<span class="dot">...</span>
+            图片加载中<span class="dot">...</span>
           </div>
         </el-image>
         <el-image
@@ -38,7 +38,7 @@
           fit="cover"
         >
           <div slot="placeholder" class="image-slot">
-            加载图片中<span class="dot">...</span>
+            图片加载中<span class="dot">...</span>
           </div>
         </el-image>
       </el-carousel-item>

+ 89 - 49
src/views/RecruitmentEmployment/RecruitmentEmploymentIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-11 13:25:43
  * @LastEditors: 空白格
- * @LastEditTime: 2022-12-13 14:19:48
+ * @LastEditTime: 2022-12-15 11:08:01
  * @FilePath: \veterans_client_web\src\views\RecruitmentEmployment\RecruitmentEmploymentIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -94,58 +94,91 @@
         </div>
         <div class="latest-recruitment-list">
           <el-row :gutter="16">
-            <el-col
-              :xs="24"
-              :sm="24"
-              :md="24"
-              :lg="12"
-              :xl="12"
-              v-for="(item, index) in postList"
-              :key="index"
-            >
-              <div
-                class="latest-recruitment-list-item"
-                @click="jumpPage('enterprisePosition', { positionId: item.id })"
+            <el-col :span="24">
+              <el-form
+                :model="queryParams"
+                label-width="90px"
+                label-position="left"
               >
-                <div class="logo">
-                  <el-image
-                    class="image"
-                    :src="
-                      item.companyLogoUrl ||
-                      require('@/assets/images/default-company.png')
-                    "
+                <el-form-item label="岗位名称:" prop="postName" size="small">
+                  <el-input
+                    placeholder="请输入岗位名称"
+                    v-model="queryParams.postName"
+                    clearable=""
+                    style="width: 50%"
+                    size="small"
+                    @clear="handleQuery"
                   >
-                    <div slot="placeholder" class="image-slot">
-                      加载中<span class="dot">...</span>
-                    </div>
-                    <div slot="error" class="image-slot">
-                      <el-image
-                        class="image"
-                        :src="require('@/assets/images/default-company.png')"
-                      ></el-image>
+                    <el-button
+                      slot="append"
+                      icon="el-icon-search"
+                      @click="handleQuery"
+                    ></el-button>
+                  </el-input>
+                </el-form-item>
+              </el-form>
+            </el-col>
+            <template v-if="postList.length">
+              <el-col
+                :xs="24"
+                :sm="24"
+                :md="24"
+                :lg="12"
+                :xl="12"
+                v-for="(item, index) in postList"
+                :key="index"
+              >
+                <div
+                  class="latest-recruitment-list-item"
+                  @click="
+                    jumpPage('enterprisePosition', { positionId: item.id })
+                  "
+                >
+                  <div class="logo">
+                    <el-image
+                      class="image"
+                      :src="
+                        item.companyLogoUrl ||
+                        require('@/assets/images/default-company.png')
+                      "
+                    >
+                      <div slot="placeholder" class="image-slot">
+                        加载中<span class="dot">...</span>
+                      </div>
+                      <div slot="error" class="image-slot">
+                        <el-image
+                          class="image"
+                          :src="require('@/assets/images/default-company.png')"
+                        ></el-image>
+                      </div>
+                    </el-image>
+                  </div>
+                  <div class="postinfo">
+                    <div class="postname">{{ item.postName || "-" }}</div>
+                    <div class="condition">
+                      {{
+                        `${item.areaName || "-"} | ${getDictLabel(
+                          workYearList,
+                          item.workYear
+                        )} | ${getEducationLevel(item.educationBg)}`
+                      }}
                     </div>
-                  </el-image>
-                </div>
-                <div class="postinfo">
-                  <div class="postname">{{ item.postName || "-" }}</div>
-                  <div class="condition">
-                    {{
-                      `${item.areaName || "-"} | ${getDictLabel(
-                        workYearList,
-                        item.workYear
-                      )} | ${getEducationLevel(item.educationBg)}`
-                    }}
+                    <div>{{ item.companyName || "-" }}</div>
                   </div>
-                  <div>{{ item.companyName || "-" }}</div>
-                </div>
-                <div class="wages">
-                  <div class="wages-range">
-                    {{ `${item.lowestSalary}k ~ ${item.highestSalary}k` }}
+                  <div class="wages">
+                    <div class="wages-range">
+                      {{ `${item.lowestSalary}k ~ ${item.highestSalary}k` }}
+                    </div>
+                    <div>{{ parseTime(item.createTime, "{y}-{m}-{d}") }}</div>
                   </div>
-                  <div>{{ parseTime(item.createTime, "{y}-{m}-{d}") }}</div>
                 </div>
-              </div>
-            </el-col>
+              </el-col>
+            </template>
+            <template v-else>
+              <el-col :span="24">
+                <el-empty description="无数据"></el-empty>
+              </el-col>
+            </template>
           </el-row>
           <div class="pagination" v-if="total">
             <el-pagination
@@ -240,6 +273,10 @@ export default {
         this.loading = false;
       });
     },
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getLatestRecruitmentList();
+    },
     /**
      * 分页切换
      * @date 2022-08-11
@@ -315,7 +352,7 @@ export default {
         font-size: 14px;
         margin-bottom: 20px;
         .title {
-          font-size: 26px;
+          font-size: 24px;
           color: #1a1a1a;
           font-family: SourceHanSansCN;
         }
@@ -387,7 +424,7 @@ export default {
       &-title {
         margin-bottom: 20px;
         .title {
-          font-size: 26px;
+          font-size: 24px;
           color: #1a1a1a;
           font-family: SourceHanSansCN;
         }
@@ -421,6 +458,9 @@ export default {
               font-size: 20px;
               font-family: SourceHanSansCN;
               margin-bottom: 2px;
+              overflow: hidden;
+              text-overflow: ellipsis;
+              white-space: nowrap;
             }
             .condition {
               font-size: 14px;

+ 5 - 3
src/views/SkillTraining/SkillPackage/SkillPackageIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-26 10:41:50
  * @LastEditors: 空白格
- * @LastEditTime: 2022-11-16 17:54:27
+ * @LastEditTime: 2022-12-15 11:56:39
  * @FilePath: \veterans_client_web\src\views\SkillTraining\SkillPackage\SkillPackageIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -50,7 +50,7 @@
             <h3>精选课程</h3>
             <span @click="more">更多></span>
           </div>
-          <div class="swpier-box" v-if="skillDetail.courseList.length">
+          <div class="swpier-box" v-if="skillDetail.courseList && skillDetail.courseList.length">
             <swiper :options="swiperOption">
               <swiper-slide
                 v-for="(img, index) in skillDetail.courseList"
@@ -222,11 +222,13 @@ export default {
   .tit-img {
     width: 266px;
     height: 266px;
-    border: 1px #ccc dashed;
+    border: 1px #ccc border;
+    border-radius: 5px;
     img {
       width: 100%;
       height: 100%;
       object-fit: fill;
+      border-radius: 5px;
     }
   }
   .right-top {