|
|
|
|
@ -221,8 +221,9 @@
|
|
|
|
|
<div class="w" id="maincontent">
|
|
|
|
|
<div class="maincontentleft" v-if="!isVocational" style="padding-top: 50px">
|
|
|
|
|
<div class="tabBar" @click="changeTab($event)">
|
|
|
|
|
<div class="tabSubset" :class="{ active: signType == '' }" data-type="0">全部</div>
|
|
|
|
|
<div class="tabSubset" :class="{ active: signType == 1 }" data-type="1">一才</div>
|
|
|
|
|
<div class="tabSubset" :class="{ active: signType == '' }" v-if="!hasTab" data-type="0">全部</div>
|
|
|
|
|
<div class="tabSubset" :class="{ active: signType == 1 }" v-if="loginValue.agencyName == '郑州一才工作' || loginValue.agencyName == '一才工作'" data-type="1">一才</div>
|
|
|
|
|
<!-- v-if="loginValue.agencyName == '郑州一才工作' || loginValue.agencyName == '一才工作'" -->
|
|
|
|
|
<!-- v-if="loginValue.agencyName == '郑州一才工作' || loginValue.agencyName == '一才工作'" -->
|
|
|
|
|
<!-- <div class="tabSubset" :class="{ active: signType == 2 }" data-type="2">三方</div> -->
|
|
|
|
|
</div>
|
|
|
|
|
@ -543,13 +544,13 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jobpricehour" v-html="getSalaryClassifyValue(item.salaryClassify, item.salaryClassifyValue)"></div>
|
|
|
|
|
<div class="jobpricemonth" v-if="item.minMonthlyPay">
|
|
|
|
|
<template v-if="formvalue.signType != 1">
|
|
|
|
|
|
|
|
|
|
<template v-if="signType != 1">
|
|
|
|
|
<span>{{ item.minMonthlyPay ? item.minMonthlyPay : "" }}</span
|
|
|
|
|
>-<span>{{ item.maxMonthlyPay ? item.maxMonthlyPay : "" }}</span
|
|
|
|
|
>元/月
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
|
|
|
|
|
<span>{{ item.minMonthlyPay ? item.minMonthlyPay / 100 : "" }}</span
|
|
|
|
|
>-<span>{{ item.maxMonthlyPay ? item.maxMonthlyPay / 100 : "" }}</span
|
|
|
|
|
>元/月
|
|
|
|
|
@ -1068,6 +1069,7 @@ export default {
|
|
|
|
|
minAge: "",
|
|
|
|
|
maxAge: "",
|
|
|
|
|
managerInfo: {},
|
|
|
|
|
hasTab:false, //判断是不是从后台来的
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
// 计算属性
|
|
|
|
|
@ -1201,8 +1203,13 @@ export default {
|
|
|
|
|
this.signType = info.signType ? info.signType : "";
|
|
|
|
|
this.currentPage = info.pageNum ? info.pageNum : 1;
|
|
|
|
|
}
|
|
|
|
|
if(this.$route.query.tab == 1){
|
|
|
|
|
|
|
|
|
|
if(this.$route.query.tab == 1 || localStorage.getItem("hasTab")){
|
|
|
|
|
this.signType = 1;
|
|
|
|
|
this.hasTab = true;
|
|
|
|
|
//写入session缓存
|
|
|
|
|
localStorage.setItem("hasTab", this.hasTab)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.$route.query.type) {
|
|
|
|
|
@ -1356,8 +1363,8 @@ export default {
|
|
|
|
|
console.log(this.formvalue);
|
|
|
|
|
try {
|
|
|
|
|
newdata = {
|
|
|
|
|
// agencyId: "3087", //正式版
|
|
|
|
|
agencyId: "2743", //测试版
|
|
|
|
|
agencyId: "3087", //正式版
|
|
|
|
|
// agencyId: "2743", //测试版
|
|
|
|
|
recruitment: "1",
|
|
|
|
|
keys: "",
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|