123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <div>
- <div class="position-item mb-3 job-closed" v-for="(val, i) in props.items" :key="i" @mouseenter="val.active = true" @mouseleave="val.active = false">
- <div class="info-header">
- <div v-if="val.active" class="header-btn">
- <!-- <v-btn class="half-button" color="primary" size="small">继续沟通</v-btn> -->
- <v-btn v-if="props.showCancelBtn" class="half-button ml-3" color="primary" size="small" @click="handleCancel(val)">取消感兴趣</v-btn>
- </div>
- <div class="img-box">
- <v-avatar :image="val.contact.avatar || 'https://minio.citupro.com/dev/menduner/7.png'" size="x-small"></v-avatar>
- <span class="name">
- <span class="mx-3">{{ val.contact.name }}</span>
- <span class="gray">{{ val.contact.postNameCn }}</span>
- </span>
- </div>
- </div>
- <div class="info-content">
- <div class="job-info">
- <div class="job-name cursor-pointer">
- <span class="mr-3 info-name">{{ val.job.name }}</span>
- <span>[{{ val.job.areaName }}]</span>
- </div>
- <div class="job-other">
- <span class="salary">{{ val.job.payFrom }}-{{ val.job.payTo }}/{{ val.job.payName }}</span>
- <v-chip class="mx-3" color="primary" label size="small">{{ val.job.expName }}</v-chip>
- <v-chip color="primary" label size="small">{{ val.job.eduName }}</v-chip>
- </div>
- </div>
- <div class="company-info">
- <v-img width="50" height="50" :src="val.enterprise.logoUrl || 'https://minio.citupro.com/dev/menduner/7.png'"></v-img>
- <div class="ml-3">
- <div class="cursor-pointer info-name">{{ val.enterprise.name }}</div>
- <div class="mt-3">
- <v-chip color="primary" label size="small" class="mr-3" v-for="k in desc" :key="k">{{ val.enterprise[k] }}</v-chip>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'longStrip'})
- import { getPersonJobUnfavorite } from '@/api/position'
- import { useI18n } from '@/hooks/web/useI18n'
- import Snackbar from '@/plugins/snackbar'
- const emits = defineEmits(['refresh'])
- const { t } = useI18n()
- const props = defineProps({
- items: {
- type: Array,
- default: () => []
- },
- showCancelBtn: {
- type: Boolean,
- default: false
- }
- })
- const desc = ['industryName', 'financingName', 'scaleName']
- const handleCancel = async (item) => {
- if (!item.job.id) return Snackbar.warning(t('sys.api.operationFailed'))
- await getPersonJobUnfavorite(item.job.id)
- emits('refresh')
- Snackbar.success(t('common.operationSuccessful'))
- }
- </script>
- <style scoped lang="scss">
- .position-item {
- height: 144px;
- background-color: #fff;
- border-radius: 12px;
- &:hover {
- box-shadow: 0 16px 40px 0 rgba(153, 153, 153, .3);
- }
- .info-header {
- height: 48px;
- background: linear-gradient(90deg,#f5fcfc,#fcfbfa);
- border-radius: 12px;
- .img-box {
- padding: 12px 24px;
- .name {
- color: var(--color-222);
- font-weight: 400;
- font-size: 13px;
- .gray {
- color: var(--color-666);
- }
- }
- }
- .header-btn {
- padding: 10px 10px 0 0;
- float: right;
- .v-btn {
- z-index: 1;
- }
- }
- }
- .info-content {
- display: flex;
- padding: 16px 24px;
- justify-content: space-between;
- .job-info {
- width: 430px;
- min-width: 430px;
- max-width: 430px;
- font-weight: 500;
- font-size: 16px;
- .job-name {
- height: 22px;
- line-height: 22px;
- color: var(--color-222);
- margin-bottom: 12px;
- }
- .job-other {
- color: var(--v-error-base);
- height: 22px;
- line-height: 22px;
- }
- }
- .company-info {
- display: flex;
- align-items: center
- }
- .interview-info {
- color: var(--color-333);
- font-size: 15px;
- }
- }
- }
- .info-name:hover {
- color: var(--v-primary-base);
- }
- </style>
|