| | |
| | | {{ workExperience }} |
| | | </div> |
| | | <div class="flexJob-card-done-detail" v-if="showDoneDetail"> |
| | | <div class="flexJob-card-done-detail-item"> |
| | | {{ workSeniority }} |
| | | </div> |
| | | <div class="flexJob-card-done-detail-item">{{ workSeniority }}</div> |
| | | <!-- <div class="flexJob-card-done-detail-item">{{ '在「宁波雷迪森酒店」,做过客房服务员' }}</div> --> |
| | | </div> |
| | | <div class="flexJob-card-footer"> |
| | |
| | | |
| | | <div class="flexJob-card-footer-right" v-if="showFooterRight"> |
| | | <slot name="footerRight"> |
| | | <nut-button type="primary" @click.stop="emit('contact')">立即联系</nut-button> |
| | | <nut-button type="primary">立即联系</nut-button> |
| | | </slot> |
| | | </div> |
| | | </div> |
| | |
| | | <script setup lang="ts"> |
| | | import { CommonTaskCardProps } from './card'; |
| | | import FlexJobTopView from './FlexJobTopView.vue'; |
| | | import { EnumUserGender, Gender } from '@12333/constants'; |
| | | import { EnumUserGender } from '@12333/constants'; |
| | | |
| | | defineOptions({ |
| | | name: 'FlexJobCard', |
| | |
| | | |
| | | const emit = defineEmits<{ |
| | | (e: 'cancelCollection'): void; |
| | | (e: 'contact'): void; |
| | | }>(); |
| | | </script> |
| | | |