LiuJ vor 2 Wochen
Ursprung
Commit
c6fcd5685d
2 geänderte Dateien mit 9 neuen und 9 gelöschten Zeilen
  1. 8 8
      src/layout/components/Navbar.vue
  2. 1 1
      src/router/index.js

+ 8 - 8
src/layout/components/Navbar.vue

@@ -158,7 +158,7 @@
           <div class="noticeTabsDataBox" v-if="tabsIndex == 3 && qiu == true && qiu2 == true">
             <div v-if="msg.job_apply && msg.job_apply.length > 0">
               <div class="noticeTabsDataItem" v-for="item in msg.job_apply" :key="item.id"
-                @click="goToPath(3.22, item.id)">
+                @click="goToPath(3.2, item.id)">
 
                 <div class="noticeTabsDataItemImg newsIcon">
                   <img src="@/assets/public/nav/message-news.png">
@@ -336,7 +336,7 @@ export default {
       msg: {},
       userType: '', //用户类型
       tabsIndex: 1, //显示哪个选项卡
-      showTabs: true, //是否显示悬浮菜单
+      showTabs: false, //是否显示悬浮菜单
       //求职招聘
       qiu: false,
       zhao: true,
@@ -449,13 +449,13 @@ export default {
           this.$router.push(`/jobHuntingListApply`);
         }
         else if (type == 3.2) { // 职场机会
-          this.$router.push(`/jobHuntingListApply`);
+          this.$router.push(`/jobOpportunities`);
         }
         else if (type == 3.3) {   // 招聘 待审核
           this.$router.push(`/jobRecruitingListApply`);
         }
         else if (type == 3.4) {   // 人才库
-          this.$router.push(`/jobHuntingList`);
+          this.$router.push(`/jobHuntingApplyList`);
         }
         else if (type == 4) {
           this.$router.push(`/bookListApply`);
@@ -472,13 +472,13 @@ export default {
           this.$router.push(`/jobHuntingList`);
         }
         else if (type == 3.2) { // 职场机会
-          this.$router.push(`/jobHuntingList`);
+          this.$router.push(`/jobOpportunities`);
         }
         else if (type == 3.3) {   // 招聘 待审核
           this.$router.push(`/jobRecruitingList`);
         }
         else if (type == 3.4) {   // 人才库
-          this.$router.push(`/jobHuntingList`);
+          this.$router.push(`/jobHuntingApplyList`);
         }
         else if (type == 4) {
           this.$router.push(`/bookList`);
@@ -495,13 +495,13 @@ export default {
           this.$router.push(`/addJobHunting?id=${id}`);
         }
         else if (type == 3.2) { // 职场机会
-          this.$router.push(`/addJobHunting?id=${id}`);
+          this.$router.push(`/jobOpportunitiesDetails?id=${id}`);
         }
         else if (type == 3.3) {   // 招聘 待审核
           this.$router.push(`/creatJob?id=${id}`);
         }
         else if (type == 3.4) {   // 人才库
-          this.$router.push(`/addJobHunting?id=${id}`);
+          this.$router.push(`/jobHuntingApplyDetil?id=${id}`);
         }
         else if (type == 4) {
           this.$router.push(`/addBook?id=${id}`);

+ 1 - 1
src/router/index.js

@@ -729,7 +729,7 @@ export const constantRoutes = [
         path: '',
         component: () => import('@/views/news/bookListApply'),
         meta: {
-          title: '添加书刊音像',
+          title: '书刊音像审核列表',
           hidden: true,
           breadcrumb: true
         }