This commit is contained in:
chashaobao
2025-12-09 07:55:14 +08:00
parent 6c1e1cfd2d
commit e5facdff6a
2 changed files with 11 additions and 7 deletions

View File

@ -200,14 +200,14 @@ const AnchorFooter = (props: { data: JobDetails }) => {
<Button className={`${PREFIX}__share-button`} openType="share">
</Button>
<LoginButton className={`${PREFIX}__contact-publisher`} onClick={handleClickContact}>
<LoginButton needRefresh className={`${PREFIX}__contact-publisher`} onClick={handleClickContact}>
{data.isAuthed ? '在线沟通' : '查看联系方式'}
{!productRecord && (data.isAuthed || productInfo?.content) ? (
{needPhone ? (
<div className={`${PREFIX}__contact-publisher-tag`}></div>
) : !productRecord && (data.isAuthed || productInfo?.content) ? (
<div className={`${PREFIX}__contact-publisher-tag`}>
{data.isAuthed ? '急招岗位可免费查看' : productInfo?.content}
</div>
) : needPhone ? (
<div className={`${PREFIX}__contact-publisher-tag`}></div>
) : null}
</LoginButton>
</div>