Browse Source

auto commit

gcz 3 years ago
parent
commit
092ffd1b00
6 changed files with 132 additions and 21 deletions
  1. 24 6
      src/App.vue
  2. 1 1
      src/components/applys.vue
  3. 16 0
      src/views/Home.vue
  4. 88 13
      src/views/applicant.vue
  5. 2 0
      src/views/login.vue
  6. 1 1
      src/views/policy.vue

+ 24 - 6
src/App.vue

@@ -1,13 +1,31 @@
 <template>
   <div id="app">
-    <!-- <div id="nav">
-      <router-link to="/">Home</router-link> |
-      <router-link to="/about">About</router-link>
-    </div> -->
-    <router-view/>
+    <router-view v-if="isRouterAlive" />
   </div>
 </template>
+<script>
+export default {
+  name: "App",
+  provide() {
+    return {
+      reload: this.reload,
+    };
+  },
+  data() {
+    return {
+      isRouterAlive: true,
+    };
+  },
+  methods: {
+    reload() {
+      this.isRouterAlive = false;
+      this.$nextTick(function () {
+        this.isRouterAlive = true;
+      });
+    },
+  },
+};
+</script>
 
 <style lang="scss">
-
 </style>

+ 1 - 1
src/components/applys.vue

@@ -63,7 +63,7 @@
             >
             <span
               v-if="item.status >= 30 && item.status <= 40"
-              @click="edit(item)"
+              @click.stop="edit(item)"
               >更新面试结果</span
             >
           </div>

+ 16 - 0
src/views/Home.vue

@@ -235,11 +235,27 @@ export default {
   },
   created() {
     // console.log("localStorage.getItem", localStorage.getItem("lifeData"));
+    console.log("this.$router", this.$router);
     this.getinfo();
     this.handelGetTrade();
     this.handelGetScope();
     this.getCompanyInfo();
   },
+  mounted() {
+    let _this = this;
+    if (_this.fromPage == "/applicant") {
+      this.companymenuIndex = "3";
+    } else if (_this.fromPage == "/jobdetails") {
+      this.companymenuIndex = "2";
+    }
+  },
+  beforeRouteEnter(to, from, next) {
+    console.log(from, "beforeRouteEnter");
+    next((vm) => {
+      // vm相当于上面的this
+      vm.fromPage = from.path;
+    });
+  },
   methods: {
     companymenuSelect(key) {
       this.companymenuIndex = key;

+ 88 - 13
src/views/applicant.vue

@@ -114,11 +114,14 @@
         <div class="btn refused" v-if="applyInfo.status <= 10" @click="refused">
           不合适
         </div>
-        <div class="btn result" v-if="applyInfo.status == 60">已标为不合适</div>
+        <!-- <div class="btn result" v-if="applyInfo.status == 60">已标为不合适</div> -->
+        <div class="btn result">
+          {{ applyInfo.status | verifyStatusFilter }}
+        </div>
       </section>
     </section>
     <el-dialog title="发送面试邀请" :visible.sync="dialogVisible" width="30%">
-      <el-form :model="form">
+      <el-form :model="form" :inline="true">
         <el-form-item label="意向岗位" :label-width="formLabelWidth">
           {{ form.postName }}
         </el-form-item>
@@ -137,11 +140,31 @@
           </el-select>
         </el-form-item>
         <el-form-item
-          v-if="form.status == 20"
-          label="邀请面试地点"
+          v-if="form.interviewMethod == 1"
+          label="邀请面试区域"
           :label-width="formLabelWidth"
         >
-          <el-input v-model="form.interviewArea" autocomplete="off"></el-input>
+          <el-cascader
+            filterable
+            size="large"
+            ref="addressSelect"
+            :options="addressOptions"
+            v-model="areaCode"
+            :leafOnly="true"
+            @change="addrChange"
+          >
+          </el-cascader>
+          <!-- <el-input v-model="form.interviewArea" autocomplete="off"></el-input> -->
+        </el-form-item>
+        <el-form-item
+          v-if="form.interviewMethod == 1"
+          label="邀请面试地址"
+          :label-width="formLabelWidth"
+        >
+          <el-input
+            v-model="form.interviewAddress"
+            autocomplete="off"
+          ></el-input>
         </el-form-item>
         <el-form-item
           v-if="form.status == 50"
@@ -167,6 +190,8 @@
 <script>
 import Header from "@/components/header.vue";
 import Mainmenu from "@/components/mainmenu.vue";
+import { parseTime } from "@/utils/index";
+import { regionDataPlus, CodeToText } from "element-china-area-data";
 import {
   getapplicantInfo,
   updateStatus,
@@ -181,6 +206,8 @@ export default {
   },
   data() {
     return {
+      areaCode: ["520000", "520100", "520102"],
+      addressOptions: regionDataPlus,
       dialogVisible: false,
       veteMemberId: "",
       postId: "",
@@ -200,10 +227,36 @@ export default {
         return "女";
       }
     },
+    verifyStatusFilter(value) {
+      if (value == 0) {
+        return "未查看";
+      } else if (value == 10) {
+        return "已查看";
+      } else if (value == 20) {
+        return "已邀请面试";
+      } else if (value == 30) {
+        return "已接受面试";
+      } else if (value == 40) {
+        return "已拒绝面试";
+      } else if (value == 50) {
+        return "面试通过";
+      } else if (value == 60) {
+        return "不合适";
+      } else if (value == 70) {
+        return "未参加面试";
+      } else if (value == 80) {
+        return "已拒绝入职";
+      } else if (value == 90) {
+        return "已入职";
+      } else {
+        return "未知";
+      }
+    },
   },
   created() {
     this.veteMemberId = this.$route.query.veteMemberId;
     this.applyId = this.$route.query.applyId;
+    this.form.id = this.$route.query.applyId;
     this.handelGetapplicantInfo();
     this.handelApplyInfo();
   },
@@ -249,6 +302,14 @@ export default {
         });
     },
     submit() {
+      console.log("this.form", this.form);
+      if (this.form.interviewMethod == "1") {
+        this.form.interviewArea =
+          CodeToText[this.areaCode[0]] +
+          CodeToText[this.areaCode[1]] +
+          CodeToText[this.areaCode[2]];
+      }
+      this.form.interviewTime = parseTime(this.form.interviewTime);
       let param = {
         id: "",
         interviewMethod: "",
@@ -258,19 +319,33 @@ export default {
       };
       let that = this;
 
-      invite(param).then((res) => {
-        this.$message({
-          message: res.msg,
-          type: "success",
-          duration: 1000,
-          onClose: function () {},
+      invite(this.form)
+        .then((res) => {
+          this.handelApplyInfo();
+          this.$message({
+            message: res.msg,
+            type: "success",
+            duration: 1000,
+            onClose: function () {},
+          });
+          // console.log("updateStatus", res);
+        })
+        .catch((err) => {
+          console.log("invite err", err);
         });
-        // console.log("updateStatus", res);
-      });
     },
     handleinvite() {
       this.dialogVisible = true;
     },
+    addrChange(value) {
+      this.form.interviewArea =
+        CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
+      console.log(
+        CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]],
+        "选中地址"
+      );
+      // console.log("addrChange", value);
+    },
   },
 };
 </script>

+ 2 - 0
src/views/login.vue

@@ -100,6 +100,7 @@ import { getCaptcha, login } from "@/utils/api.js";
 
 export default {
   name: "Login",
+  inject: ["reload"],
   directives: {
     focus: {
       inserted(el) {
@@ -212,6 +213,7 @@ export default {
               }
               //   console.log("that.redirect", that.redirect);
               localStorage.removeItem("fromUrl");
+              this.reload();
               location.href = backUrl;
 
               //   that.$router.replace("/jobdetails").catch(() => {});

+ 1 - 1
src/views/policy.vue

@@ -74,7 +74,7 @@ export default {
         .then((res) => {
           // console.log("getPolicyList", res);
           this.policyList = res.rows;
-          this.total = res.total;
+          this.total = Number(res.total);
         })
         .catch((err) => {
           console.log("getPolicyList err", err);