Bläddra i källkod

Merge branch 'test' of http://120.79.166.78:19005/zhongzheng-edu/zz-admin into test

Tang 4 år sedan
förälder
incheckning
0f596a2f2c

+ 1 - 1
src/layout/permission.js

@@ -85,4 +85,4 @@ router.beforeEach((to, from, next) => {
 })
 router.afterEach((to, from) => {
     NProgress.done();
-})
+})

+ 2 - 2
src/utils/request.js

@@ -18,7 +18,7 @@ service.interceptors.request.use(
     config => {
         const token = cookie.getCookie('token'); //获取存储在本地的token,如果需要token就在这里带上
         if (!config.changeHeaders) {
-            config.headers = {    // 设置请求头   常用语post请求 
+            config.headers = {    // 设置请求头   常用语post请求
                 "Content-Type": "application/json"
             };
             config.data = JSON.stringify(config.data);  // 这里我们也可以在过滤下 请求参数数据
@@ -102,4 +102,4 @@ function delCookie(name) {
     var cval = cookie.getCookie(name);
     if (cval != null)
         document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
-}
+}

+ 3 - 1
src/view/jobSearchManagement/resumeCenter/index.vue

@@ -86,7 +86,7 @@
           style="display: flex; padding: 20px"
         >
           <div>{{ item.timeStr }}</div>
-          <div style="display: flex; margin-left: 30px">
+          <div style=" margin-left: 30px">
             <div v-for="(item_c, index_c) in item.list" :key="index_c">
               {{ item_c.job }}-{{ item_c.recruitResumeVo.realname
               }}<span v-if="index_c < item.list.length - 1">,</span>
@@ -401,6 +401,7 @@ export default {
       },
       companyGMdata: [], //公司规模
       companyLXdata: [], //公司类型
+      statusIndexList:[0,1,2,3,4,5,6,7,8,9,10,11,12],
     };
   },
   created() {},
@@ -533,6 +534,7 @@ export default {
         year: this.dayValue.getFullYear(),
         month: this.dayValue.getMonth() + 1,
         day: this.dayValue.getDate(),
+        statusIds:this.statusIndexList.toString()
       };
       this.$api.recruitinterviewlist(data).then((res) => {
         if (res.code == 200) {