|
|
|
|
@ -663,15 +663,17 @@
|
|
|
|
|
<div
|
|
|
|
|
class="subset"
|
|
|
|
|
v-for="(item, index) in jobMainList"
|
|
|
|
|
@click="toDetail(item)"
|
|
|
|
|
:key="index"
|
|
|
|
|
:style="{
|
|
|
|
|
background: item.recruitment == '1' ? '#fff' : '#f5f5f5',
|
|
|
|
|
}"
|
|
|
|
|
data-title="职位列表item"
|
|
|
|
|
style="cursor: pointer;"
|
|
|
|
|
>
|
|
|
|
|
<!-- v-if="signType == ''" -->
|
|
|
|
|
<div class="g_flex_row_between g_w_all item-obj">
|
|
|
|
|
<span @click="toDetail(item)" style="cursor: pointer;width: 70%;">
|
|
|
|
|
<span style="cursor: pointer;width: 70%;">
|
|
|
|
|
<div class="subsetleft">
|
|
|
|
|
<!-- <div class="imgbox">
|
|
|
|
|
<img v-if="item.logo.length !== 0" :src="item.logo" style="object-fit: cover; width: 156px; height: 156px" />
|
|
|
|
|
@ -781,13 +783,16 @@
|
|
|
|
|
<div class="g_flex_row_end">
|
|
|
|
|
<!-- <a-button shape="circle" type="danger" ghost>
|
|
|
|
|
<template #icon> -->
|
|
|
|
|
<a v-if="item.customServiceUrl" :href="item.customServiceUrl || 'javascript:;'" target="_blank" class="g_w_60 g_cursor_point">
|
|
|
|
|
<a v-if="item.customServiceUrl" :href="item.customServiceUrl || 'javascript:;'"
|
|
|
|
|
target="_blank" class="g_w_60 g_cursor_point"
|
|
|
|
|
@click.stop.prevent="handleClick(item.customServiceUrl)"
|
|
|
|
|
>
|
|
|
|
|
<div class="g_text_c g_w_all" style="height: 18px;overflow: hidden;line-height: 18px;">
|
|
|
|
|
<a-icon type="message" class="g_fs_16" style="color: #666;" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="g_w_all" style="font-size: 12px;text-align: center;color: #666;zoom: 0.92;">联系客服</div>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="g_w_60 g_cursor_point" @click="$message.error('此职位暂未接入客服')" v-else>
|
|
|
|
|
<div class="g_w_60 g_cursor_point" @click.stop="$message.error('此职位暂未接入客服')" v-else>
|
|
|
|
|
<div class="g_text_c g_w_all" style="height: 18px;overflow: hidden;line-height: 18px;">
|
|
|
|
|
<a-icon type="message" class="g_fs_16" style="color: #666;" />
|
|
|
|
|
</div>
|
|
|
|
|
@ -1271,6 +1276,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 组件方法
|
|
|
|
|
methods: {
|
|
|
|
|
handleClick(url) {
|
|
|
|
|
// 手动处理链接跳转
|
|
|
|
|
if(url){
|
|
|
|
|
window.open(url, '_blank');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// ... 其他方法
|
|
|
|
|
handleScroll() {
|
|
|
|
|
const scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
|
|
|
|
|
|