| | |
| | | <template> |
| | | <FlexJobTopView> |
| | | <FlexJobTopView :avatar="avatar" :name="name" :gender="gender" :isReal="isReal"> |
| | | <template #detail> |
| | | <div class="task-check-card-phone-container"> |
| | | <div class="task-check-card-phone-wrapper"> |
| | | <div class="task-check-card-phone-label">手机号:</div> |
| | | <div class="task-check-card-phone">13000000000</div> |
| | | <div class="task-check-card-phone">{{ contactPhoneNumber }}</div> |
| | | </div> |
| | | <slot name="actions"></slot> |
| | | </div> |
| | |
| | | |
| | | <script setup lang="ts"> |
| | | import { FlexJobTopView } from '@12333/components'; |
| | | import { EnumUserGender } from '@12333/constants'; |
| | | |
| | | defineOptions({ |
| | | name: 'TaskCheckPersonalView', |
| | | }); |
| | | |
| | | type Props = { |
| | | avatar?: string; |
| | | name?: string; |
| | | gender?: EnumUserGender; |
| | | isReal?: boolean; |
| | | contactPhoneNumber?: string; |
| | | }; |
| | | |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | | </script> |
| | | |
| | | <style lang="scss"> |