Selaa lähdekoodia

更新双选会,简历管理增加按钮,更换ico

guhongwei 5 vuotta sitten
vanhempi
commit
4dc0679afe
3 muutettua tiedostoa jossa 17 lisäystä ja 7 poistoa
  1. BIN
      public/favicon.ico
  2. 3 3
      src/views/jobs/jobfair/index.vue
  3. 14 4
      src/views/manager/resume/index.vue

BIN
public/favicon.ico


+ 3 - 3
src/views/jobs/jobfair/index.vue

@@ -5,10 +5,10 @@
         双选会
       </template>
       <template v-slot:main1>
-        <list :dataList="firstList" :totalRow="firstTotalRow" @changePage="search" type="first"></list>
+        <list :dataList="myList" :totalRow="myTotalRow" @changePage="search" @delete="handleDelete" type="my" @receipt="receipt"></list>
       </template>
       <template v-slot:main2>
-        <list :dataList="myList" :totalRow="myTotalRow" @changePage="search" @delete="handleDelete" type="my" @receipt="receipt"></list>
+        <list :dataList="firstList" :totalRow="firstTotalRow" @changePage="search" type="first"></list>
       </template>
     </list-tab>
   </div>
@@ -30,7 +30,7 @@ export default {
   data: () => ({
     firstTotalRow: 60,
     myTotalRow: 30,
-    tabsTitle: ['双选会', '我的报名'],
+    tabsTitle: ['我的报名', '我要报名'],
     firstList: [],
     myList: [],
   }),

+ 14 - 4
src/views/manager/resume/index.vue

@@ -42,13 +42,13 @@
       </template>
     </list-tab>
     <el-dialog title="简历详情" center :visible.sync="resumeDialog" :fullscreen="true">
-      <resumes :info="info"></resumes>
+      <resumeJob :info="info"></resumeJob>
     </el-dialog>
   </div>
 </template>
 
 <script>
-import resumes from '@publics/src/views/resume.vue';
+import resumeJob from '@publics/src/views/resumeJob.vue';
 import list from './list.vue';
 import listTab from '@/layout/list-tab.vue';
 import { mapActions, mapState } from 'vuex';
@@ -58,7 +58,7 @@ export default {
   components: {
     listTab,
     list,
-    resumes,
+    resumeJob,
   },
   data: () => ({
     testList: [{ label: 'test', value: 1 }, { label: 'name', value: 2 }, { label: 'lock', value: 3 }, { label: 'not', value: 4 }],
@@ -136,4 +136,14 @@ export default {
 };
 </script>
 
-<style lang="less" scoped></style>
+<style lang="less" scoped>
+/deep/.el-dialog__headerbtn {
+  top: 20px;
+  right: 20%;
+}
+/deep/.el-dialog__headerbtn .el-dialog__close {
+  color: #333;
+  font-size: 30px;
+  font-weight: 700;
+}
+</style>