Explorar o código

提交简历判断

yangzj %!s(int64=2) %!d(string=hai) anos
pai
achega
22b2c583e5

+ 38 - 28
src/api/CooperativeEnterprise/index.js

@@ -2,12 +2,12 @@
  * @Description: 合作企业
  * @Author: 空白格
  * @Date: 2022-08-11 16:31:06
- * @LastEditors: gcz
- * @LastEditTime: 2022-08-23 16:58:53
+ * @LastEditors: 空白格
+ * @LastEditTime: 2022-08-30 16:31:39
  * @FilePath: \veterans_client_web\src\api\CooperativeEnterprise\index.js
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
  */
-import request from '@/utils/request'
+import request from "@/utils/request";
 /**
  * 获取合作企业列表
  * @param {*} params
@@ -15,13 +15,13 @@ import request from '@/utils/request'
  */
 export function getCompanyList(params) {
   return request({
-    url: '/app/company/list',
-    method: 'get',
+    url: "/app/company/list",
+    method: "get",
     headers: {
-      noLoginFlag: true
+      noLoginFlag: true,
     },
-    params
-  })
+    params,
+  });
 }
 
 /**
@@ -31,13 +31,13 @@ export function getCompanyList(params) {
  */
 export function getCompanyDetails(params) {
   return request({
-    url: '/app/company/getDetail/' + params.companyId,
-    method: 'get',
+    url: "/app/company/getDetail/" + params.companyId,
+    method: "get",
     headers: {
-      noLoginFlag: true
+      noLoginFlag: true,
     },
-    params
-  })
+    params,
+  });
 }
 
 /**
@@ -47,13 +47,13 @@ export function getCompanyDetails(params) {
  */
 export function getCompanyPositon(params) {
   return request({
-    url: '/app/companypost/list/' + params.companyId,
-    method: 'get',
+    url: "/app/companypost/list/" + params.companyId,
+    method: "get",
     headers: {
-      noLoginFlag: true
+      noLoginFlag: true,
     },
-    params
-  })
+    params,
+  });
 }
 
 /**
@@ -63,13 +63,13 @@ export function getCompanyPositon(params) {
  */
 export function getJobDetails(params) {
   return request({
-    url: '/app/companypost/getDetail/' + params.positionId,
-    method: 'get',
+    url: "/app/companypost/getDetail/" + params.positionId,
+    method: "get",
     headers: {
-      noLoginFlag: true
+      noLoginFlag: true,
     },
-    params
-  })
+    params,
+  });
 }
 
 /**
@@ -79,10 +79,20 @@ export function getJobDetails(params) {
  */
 export function applyJob(data) {
   return request({
-    url: '/app/delivery/add',
-    method: 'post',
-    data
-  })
+    url: "/app/delivery/add",
+    method: "post",
+    data,
+  });
 }
 
-
+/**
+ * 判断用户是否已经投递
+ * @param {*} params
+ * @returns
+ */
+export function isApplyJob(params) {
+  return request({
+    url: "/app/delivery/queryIsDelivered/" + params.id,
+    method: "get",
+  });
+}

+ 87 - 60
src/views/CooperativeEnterprise/EnterprisePosition/EnterprisePositionIndex.vue

@@ -3,7 +3,7 @@
  * @Author: gcz
  * @Date: 2022-08-23 15:06:48
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-29 11:09:14
+ * @LastEditTime: 2022-08-30 16:38:29
  * @FilePath: \veterans_client_web\src\views\CooperativeEnterprise\EnterprisePosition\EnterprisePositionIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by gcz, All Rights Reserved.
 -->
@@ -29,9 +29,17 @@
             </div>
             <div class="edhb-left-info">
               <view v-if="jobDetails.postStatus == 0">职位已下架</view>
-              <div class="edhb-left-info-name">{{ jobDetails.postName || "-" }}</div>
-              <div class="edhb-left-info-salary">{{ jobDetails.lowestSalary }}K-{{ jobDetails.highestSalary }}K</div>
-              <div class="edhb-left-info-target">经验{{ jobDetails.workYear }}年 / {{ getEducationLevel(jobDetails.educationBg) }} / {{ jobDetails.cityName }}</div>
+              <div class="edhb-left-info-name">
+                {{ jobDetails.postName || "-" }}
+              </div>
+              <div class="edhb-left-info-salary">
+                {{ jobDetails.lowestSalary }}K-{{ jobDetails.highestSalary }}K
+              </div>
+              <div class="edhb-left-info-target">
+                经验{{ jobDetails.workYear }}年 /
+                {{ getEducationLevel(jobDetails.educationBg) }} /
+                {{ jobDetails.cityName }}
+              </div>
             </div>
           </div>
           <div class="edhb-right">
@@ -54,11 +62,14 @@
     <div class="app-main-box">
       <div class="app-main-box-content">
         <section class="job-details">
-            <div class="title">职位描述</div>
-            <div class="description ql-editor" v-html="jobDetails.description"></div>
-            <div class="content-bottom">
-              <div class="submit" @click="submit">提交简历</div>
-            </div>
+          <div class="title">职位描述</div>
+          <div
+            class="description ql-editor"
+            v-html="jobDetails.description"
+          ></div>
+          <div class="content-bottom">
+            <div class="submit" v-if="isSubmit" @click="submit">提交简历</div>
+          </div>
         </section>
       </div>
     </div>
@@ -67,31 +78,37 @@
 </template>
 
 <script>
-import { getCompanyDetails,getJobDetails,applyJob } from "@/api/CooperativeEnterprise";
-import { parseTime } from "@/utils/utils";
+import {
+  getCompanyDetails,
+  getJobDetails,
+  applyJob,
+  isApplyJob,
+} from "@/api/CooperativeEnterprise";
 import { getDictData } from "@/api/Dict";
 import { mapState } from "vuex";
 import TipPopup from "@/components/TipPopup";
 export default {
   name: "EnterprisePositionIndex",
   components: {
-    TipPopup
+    TipPopup,
   },
   data() {
     return {
-      showTipPopup:false,
-      positionId:'',
+      showTipPopup: false,
+      positionId: "",
       loading: false,
       details: [], //公司详情
       companyScopeList: [],
-      educationList:[],
-      jobDetails:[],
+      educationList: [],
+      jobDetails: [],
+      isSubmit: false,
     };
   },
   created() {
     this.positionId = this.$route.query.positionId;
     if (this.positionId) {
       this.getJobDetails(this.positionId);
+      this.isApplyJob();
     }
     this.getDict();
   },
@@ -118,9 +135,9 @@ export default {
      * @returns {any}
      */
     getDict() {
-        getDictData({ key: "degr_educ" }).then((res) => {
-          this.educationList = res.data;
-        });
+      getDictData({ key: "degr_educ" }).then((res) => {
+        this.educationList = res.data;
+      });
       //   getDictData({ key: "company_trade" }).then((res) => {
       //     this.companyTradeList = res.data;
       //   });
@@ -128,6 +145,18 @@ export default {
         this.companyScopeList = res.data;
       });
     },
+    /**
+     * 判断是否已经投递
+     * @date 2022-08-30
+     * @returns {any}
+     */
+    isApplyJob() {
+      isApplyJob({ id: this.positionId }).then((res) => {
+        if (res.code === 200) {
+          this.isSubmit = res.data === 0;
+        }
+      });
+    },
     /**
      * 获取教育等级名称
      * @date 2022-08-11
@@ -143,14 +172,13 @@ export default {
       });
       return label;
     },
-    getJobDetails(positionId){
-        getJobDetails({positionId}).then(res=>{
-            this.jobDetails = res?.data;
-            if(this.jobDetails.companyId){
-                this.getCompanyDetails(this.jobDetails.companyId);
-            }
-        })
-
+    getJobDetails(positionId) {
+      getJobDetails({ positionId }).then((res) => {
+        this.jobDetails = res?.data;
+        if (this.jobDetails.companyId) {
+          this.getCompanyDetails(this.jobDetails.companyId);
+        }
+      });
     },
     /**
      * 获取企业详情
@@ -179,51 +207,50 @@ export default {
     errorHandler() {
       return true;
     },
-    submit(){
+    submit() {
       let auditStatus = this.userInfo?.auditStatus;
-      switch (Number(auditStatus)){
+      switch (Number(auditStatus)) {
         case 0:
-          this.$message.warning('您的认证正在审核中,该功能需要认证后才能使用!')
+          this.$message.warning("您的认证正在审核中,该功能需要认证后才能使用!");
           break;
         case 1:
-          this.$message.warning('您的认证未通过,,该功能需要认证后才能使用!')
+          this.$message.warning("您的认证未通过,,该功能需要认证后才能使用!");
           break;
         case 2:
-          this.applyJob()
+          this.applyJob();
           break;
         case 3:
-          this.$message.warning('您的认证已被撤销,该功能需要认证后才能使用!')
+          this.$message.warning("您的认证已被撤销,该功能需要认证后才能使用!");
           break;
         case 9:
-          this.$message.warning('您还未进行认证,该功能需要认证后才能使用!')
+          this.$message.warning("您还未进行认证,该功能需要认证后才能使用!");
           break;
       }
     },
-    applyJob(){
+    applyJob() {
       this.$confirm("您确认申请该职位吗?", "提示", {
         confirmButtonText: "确定",
         cancelButtonText: "取消",
         type: "warning",
-      }).then(()=>{
-        applyJob({postId:this.positionId}).then(res=>{
-          if(res.code==200){
-            this.showTipPopup = true
+      }).then(() => {
+        applyJob({ postId: this.positionId }).then((res) => {
+          if (res.code == 200) {
+            this.showTipPopup = true;
           }
-        })
-      })
-
-    }
+        });
+      });
+    },
   },
 };
 </script>
 
-<style lang='scss' scoped>
-.app-main-box-content{
-  min-height: calc( 100vh - 73px - 180px - 100px - 40px - 23px );
+<style lang="scss" scoped>
+.app-main-box-content {
+  min-height: calc(100vh - 73px - 180px - 100px - 40px - 23px);
   position: relative;
 }
-.enterprise-details{
-    &-header {
+.enterprise-details {
+  &-header {
     background-color: #43565f;
     &-box {
       margin: 0 auto;
@@ -242,13 +269,13 @@ export default {
             font-family: SourceHanSansCN;
             margin-bottom: 3px;
           }
-          &-salary{
-            color: #EF651F;
+          &-salary {
+            color: #ef651f;
             font-weight: Bold;
             font-size: 20px;
             letter-spacing: 1.24px;
           }
-          &-target{
+          &-target {
             color: #fff;
             font-weight: 400;
             font-size: 14px;
@@ -281,21 +308,21 @@ export default {
     }
   }
 }
-.job-details{
-    color: rgb(81, 88, 109);
-  .title{
+.job-details {
+  color: rgb(81, 88, 109);
+  .title {
     font-weight: 400;
     font-size: 20px;
-    color: #1A1A1A;
+    color: #1a1a1a;
     letter-spacing: 1.34px;
     margin-bottom: 15px;
   }
-  .content-bottom{
+  .content-bottom {
     position: static;
     height: 50px;
     line-height: 50px;
     margin: 30px auto 38px;
-    .submit{
+    .submit {
       position: absolute;
       left: 50%;
       margin-left: -100px;
@@ -304,10 +331,10 @@ export default {
       background: #709078;
       font-weight: 400;
       font-size: 20px;
-      color: #FFFFFF;
+      color: #ffffff;
       letter-spacing: 1.08px;
       text-align: center;
-      cursor: pointer;;
+      cursor: pointer;
     }
   }
 }
@@ -341,7 +368,7 @@ export default {
   }
 }
 .description {
-  :deep(p){
+  :deep(p) {
     margin-bottom: 10px;
   }
   :deep(ul) {

+ 2 - 2
src/views/Home/HomeIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-10 11:26:40
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-30 16:04:52
+ * @LastEditTime: 2022-08-30 16:41:19
  * @FilePath: \veterans_client_web\src\views\Home\HomeIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -87,7 +87,7 @@
       class="wechat-dialog"
       :title="dialogObj.title"
       :visible.sync="dialogObj.open"
-      width="300px"
+      width="380px"
       :before-close="handleCloseWechat"
     >
       <template v-if="dialogObj.type === 'wechat'">