| | |
| | | import WorkHistoryList from './work-history-list.vue'; |
| | | import EmergencyContactList from './emergency-contact-list.vue'; |
| | | import SocialSecurityList from './social-security-list.vue'; |
| | | import ContractList from './contract-list.vue'; |
| | | |
| | | const props = defineProps<{ |
| | | employee: HrmEmployeeApi.Employee; |
| | |
| | | <Tabs.TabPane key="socialSecurity" tab="社保公积金档案"> |
| | | <SocialSecurityList form-type="detail" :employee-id="employee.id" :user-id="employee.userId" /> |
| | | </Tabs.TabPane> |
| | | <Tabs.TabPane key="contract" tab="员工合同"> |
| | | <ContractList :employee-id="employee.id" /> |
| | | </Tabs.TabPane> |
| | | </Tabs> |
| | | </div> |
| | | </template> |