| | |
| | | @click="goDetail(item)" |
| | | > |
| | | <template #footerRight> |
| | | <template |
| | | <!-- <template |
| | | v-if="item.enterpriseSignContractStatus === EnumTaskUserSignContractStatus.Pass" |
| | | > |
| | | <nut-button |
| | |
| | | >解约</nut-button |
| | | > |
| | | <nut-button type="primary" @click.stop="checkContract(item)">查看合约</nut-button> |
| | | </template> |
| | | </template> --> |
| | | <nut-button |
| | | v-if="item.userSignContractStatus === EnumTaskUserSignContractStatus.Wait" |
| | | v-if=" |
| | | item.userSignContractStatus === EnumTaskUserSignContractStatus.Wait || |
| | | item.userSignContractStatus === EnumTaskUserSignContractStatus.Stop || |
| | | !item.userSignContractStatus |
| | | " |
| | | type="primary" |
| | | @click.stop="goFlexJobSign(item)" |
| | | >邀请签约</nut-button |
| | | > |
| | | <nut-button |
| | | <!-- <nut-button |
| | | v-if="item.enterpriseSignContractStatus === EnumTaskUserSignContractStatus.Wait" |
| | | type="primary" |
| | | @click.stop="goEnterpriseSign(item)" |
| | | >企业签约</nut-button |
| | | > |
| | | > --> |
| | | </template> |
| | | </FlexJobCard> |
| | | </template> |
| | |
| | | } |
| | | function goFlexJobSign(item: API.GetEnterpriseEmployeesQueryResultItem) { |
| | | Taro.navigateTo({ |
| | | url: `${RouterPath.flexJobSign}?enterpriseEmployeeId=${item.id}`, |
| | | url: `${RouterPath.flexJobSign}?enterpriseEmployeeId=${item.id}&enterpriseId=${item.enterpriseId}`, |
| | | }); |
| | | } |
| | | |