|
@@ -2,7 +2,7 @@
|
|
|
<div class="company-box">
|
|
|
<div class="sub-li" v-for="item in list" :key="item.enterprise.id">
|
|
|
<div
|
|
|
- class="company-info-top ma-3 rounded-lg px-3 cursor-pointer" :class="item.active ? 'elevation-5' : ''"
|
|
|
+ class="company-info-top ma-3 rounded-lg px-3 cursor-pointer" :class="item.active ? 'elevation-5 hoverShadowSolid' : ''"
|
|
|
@click.stop="jumpToEnterpriseDetail(item.enterprise.id, true)" @mouseenter="item.active = true" @mouseleave="item.active = false">
|
|
|
<div class="float-left">
|
|
|
<v-img class="entLogoImg" :src="item.enterprise.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'" contain rounded :alt="item.enterprise.anotherName" :width="50" :height="50" />
|
|
@@ -14,7 +14,7 @@
|
|
|
</div>
|
|
|
<v-divider class="mx-4"></v-divider>
|
|
|
<v-hover v-slot="{ isHovering, props }">
|
|
|
- <div class="company-info-bottom mx-3 mt-2 rounded-lg pa-3 cursor-pointer" v-bind="props" :class="isHovering && (item?.job && Object.keys(item.job).length) ? 'elevation-5' : ''">
|
|
|
+ <div class="company-info-bottom mx-3 mt-2 rounded-lg pa-3 cursor-pointer" v-bind="props" :class="isHovering && (item?.job && Object.keys(item.job).length) ? 'elevation-5 hoverShadowSolid' : ''">
|
|
|
<div v-if="item?.job && Object.keys(item.job).length" @click.stop="handleClickPosition(item.job)">
|
|
|
<div class="mb-1 d-flex">
|
|
|
<p
|