Browse Source

auto commit

gcz 3 years ago
parent
commit
877b3a3947
2 changed files with 19 additions and 9 deletions
  1. 3 5
      src/components/applys.vue
  2. 16 4
      src/views/applicant.vue

+ 3 - 5
src/components/applys.vue

@@ -61,9 +61,7 @@
               "
               >发起视频面试</span
             >
-            <span
-              v-if="item.status >= 30 && item.status <= 40"
-              @click.stop="edit(item)"
+            <span v-if="item.status >= 20" @click.stop="edit(item)"
               >更新面试结果</span
             >
           </div>
@@ -95,7 +93,7 @@
               v-for="item in results"
               :key="item.label"
               :label="item.label"
-              :value="item.value"
+              :value="Number(item.value)"
             ></el-option>
           </el-select>
         </el-form-item>
@@ -179,7 +177,7 @@ export default {
       results: [
         // { label: "未查看", value: 0 },
         // { label: "已查看", value: 10 },
-        // { label: "邀请面试", value: 20 },
+        { label: "邀请面试", value: 20 },
         // { label: "已接受面试", value: 30 },
         { label: "已拒绝面试", value: 40 },
         { label: "面试通过", value: 50 },

+ 16 - 4
src/views/applicant.vue

@@ -43,7 +43,8 @@
         </div>
         <div class="block">
           <div class="title">工作经历</div>
-          <el-timeline :reverse="false">
+          <div>暂无</div>
+          <!-- <el-timeline :reverse="false">
             <el-timeline-item timestamp="2020/03-至今" placement="top">
               <el-card>
                 <h4>贵州威振押运有限公司</h4>
@@ -71,11 +72,12 @@
                 </p>
               </el-card>
             </el-timeline-item>
-          </el-timeline>
+          </el-timeline> -->
         </div>
         <div class="block">
           <div class="title">培训与教育经历</div>
-          <el-timeline :reverse="false">
+          <div>暂无</div>
+          <!-- <el-timeline :reverse="false">
             <el-timeline-item timestamp="2020/03-至今" placement="top">
               <el-card>
                 <h4>贵州威振押运有限公司</h4>
@@ -103,7 +105,7 @@
                 </p>
               </el-card>
             </el-timeline-item>
-          </el-timeline>
+          </el-timeline> -->
         </div>
       </section>
       <!-- left end -->
@@ -117,6 +119,9 @@
         <!-- <div class="btn result" v-if="applyInfo.status == 60">已标为不合适</div> -->
         <div class="btn result">
           {{ applyInfo.status | verifyStatusFilter }}
+          <span v-if="applyInfo.status == '20'"
+            >({{ applyInfo.interviewMethod | filterMethod }})</span
+          >
         </div>
       </section>
     </section>
@@ -227,6 +232,13 @@ export default {
         return "女";
       }
     },
+    filterMethod(val) {
+      if (val == "0") {
+        return "视频";
+      } else if (val == "1") {
+        return "现场";
+      }
+    },
     verifyStatusFilter(value) {
       if (value == 0) {
         return "未查看";