|
|
|
@ -474,7 +474,7 @@
|
|
|
|
<span v-if="item.jobDesp" :class="'copyInfo' + index">{{ item.jobDesp }}</span
|
|
|
|
<span v-if="item.jobDesp" :class="'copyInfo' + index">{{ item.jobDesp }}</span
|
|
|
|
><span v-else>暂无详单</span>
|
|
|
|
><span v-else>暂无详单</span>
|
|
|
|
</template>-->
|
|
|
|
</template>-->
|
|
|
|
<router-link target="_blank" :to="'/detail?' + 'id=' + item.id + '&' + 'page=' + formvalue.pageNum" rel="opener">
|
|
|
|
<router-link target="_blank" :to="signType == '' ? ('/detail?' + 'id=' + item.id + '&' + 'page=' + formvalue.pageNum) : ('/detailYicai?' + 'id=' + item.id)" rel="opener">
|
|
|
|
<button type="primary" class="jobDesp br4" :style="{
|
|
|
|
<button type="primary" class="jobDesp br4" :style="{
|
|
|
|
background: item.recruitment == '1' ? '#fff' : '#f5f5f5',
|
|
|
|
background: item.recruitment == '1' ? '#fff' : '#f5f5f5',
|
|
|
|
}">更多</button>
|
|
|
|
}">更多</button>
|
|
|
|
@ -827,31 +827,33 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(this.signType == ''){
|
|
|
|
if(this.signType == ''){
|
|
|
|
this.getJobList()
|
|
|
|
this.getJobList()
|
|
|
|
this.getJobSpecial()
|
|
|
|
|
|
|
|
this.getProvince()
|
|
|
|
|
|
|
|
this.getdateinfo()
|
|
|
|
|
|
|
|
this.getHotCity()
|
|
|
|
|
|
|
|
this.getCityWhichHasJob()
|
|
|
|
|
|
|
|
this.getHotStore()
|
|
|
|
|
|
|
|
this.getClassifyList()
|
|
|
|
|
|
|
|
this.getUserManager()
|
|
|
|
|
|
|
|
this.hideFilterContent()
|
|
|
|
|
|
|
|
if (isNotEmptyCheck(localStorage.getItem('POSITION_INFO'))) {
|
|
|
|
|
|
|
|
let position = JSON.parse(localStorage.getItem('POSITION_INFO'))
|
|
|
|
|
|
|
|
let diffTime = new Date().getTime() - JSON.parse(localStorage.getItem('POSITION_INFO')).timestamp
|
|
|
|
|
|
|
|
if (diffTime / 3600000 > 24) {
|
|
|
|
|
|
|
|
this.getPosition()
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.lng = position.lng
|
|
|
|
|
|
|
|
this.lat = position.lat
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.getPosition()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
this.getJobListYicai()
|
|
|
|
this.getJobListYicai()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.getJobSpecial()
|
|
|
|
|
|
|
|
this.getProvince()
|
|
|
|
|
|
|
|
this.getdateinfo()
|
|
|
|
|
|
|
|
this.getHotCity()
|
|
|
|
|
|
|
|
this.getCityWhichHasJob()
|
|
|
|
|
|
|
|
this.getHotStore()
|
|
|
|
|
|
|
|
this.getClassifyList()
|
|
|
|
|
|
|
|
this.getUserManager()
|
|
|
|
|
|
|
|
this.hideFilterContent()
|
|
|
|
|
|
|
|
if (isNotEmptyCheck(localStorage.getItem('POSITION_INFO'))) {
|
|
|
|
|
|
|
|
let position = JSON.parse(localStorage.getItem('POSITION_INFO'))
|
|
|
|
|
|
|
|
let diffTime = new Date().getTime() - JSON.parse(localStorage.getItem('POSITION_INFO')).timestamp
|
|
|
|
|
|
|
|
if (diffTime / 3600000 > 24) {
|
|
|
|
|
|
|
|
this.getPosition()
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.lng = position.lng
|
|
|
|
|
|
|
|
this.lat = position.lat
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.getPosition()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* el 被新创建的 vm.el 替换,并挂载到实例上去之后调用该钩子。
|
|
|
|
* el 被新创建的 vm.el 替换,并挂载到实例上去之后调用该钩子。
|
|
|
|
|