| | |
| | | :gender="item.gender" |
| | | :age="item.age" |
| | | :isReal="item.userIsReal" |
| | | :personalIdentityContent="item.personalIdentityContent" |
| | | :educationalBackgroundContent="item.educationalBackgroundContent" |
| | | :taskCount="item.taskCount" |
| | | :avatar="item.avatar" |
| | | :workExperience="item.workExperience" |
| | | :workSeniority="item.workSeniority" |
| | | @click="goDetail(item)" |
| | | > |
| | | <template #footerRight> |
| | |
| | | |
| | | function goDetail(item: API.GetEnterpriseEmployeesQueryResultItem) { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.flexJobDetailFromManage}?userId=${item.id}`, |
| | | url: `${RouterPath.flexJobDetailFromManage}?enterpriseEmployeeId=${item.id}`, |
| | | }); |
| | | } |
| | | |