|
@@ -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) {
|