| | |
| | | :taskCount="userResumeInfo.taskCount" |
| | | :contactPhoneNumber="userResumeInfo.contactPhoneNumber" |
| | | :identity="userResumeInfo.identity" |
| | | :userId="enterpriseEmployeeId" |
| | | :userExpectJobs="userResumeInfo.userExpectJobs" |
| | | :freeTime="userResumeInfo.freeTime" |
| | | :jobSeekingStatus="userResumeInfo.jobSeekingStatus" |
| | |
| | | :taskInfoUsers="userResumeInfo.taskInfoUsers" |
| | | :isCollapse="true" |
| | | > |
| | | <!-- <template #footer> |
| | | <PageFooterBtn type="primary" plain>解约</PageFooterBtn> |
| | | <PageFooterBtn type="primary">签约</PageFooterBtn> |
| | | </template> --> |
| | | <template #footer> |
| | | <PageFooterBtn v-if="userResumeInfo" type="primary" plain>解约</PageFooterBtn> |
| | | <PageFooterBtn type="primary" @click="goToSign">签约</PageFooterBtn> |
| | | </template> |
| | | </JobDetailContent> |
| | | </LoadingLayout> |
| | | </template> |
| | |
| | | const enterpriseEmployeeId = router.params?.enterpriseEmployeeId ?? ''; |
| | | |
| | | const { isLoading, isError, userResumeInfo, refetch } = useUserResume({ |
| | | userId: enterpriseEmployeeId, |
| | | enterpriseEmployeeId: enterpriseEmployeeId, |
| | | }); |
| | | |
| | | function goToSign() { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.flexJobSign}?enterpriseEmployeeId=${enterpriseEmployeeId}`, |
| | | }); |
| | | } |
| | | </script> |
| | | |
| | | <style lang="scss"> |