急聘功能开发
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
冯辉
2026-06-26 23:54:33 +08:00
parent aae3be810e
commit f248d9a409
5 changed files with 50 additions and 3 deletions

View File

@@ -274,7 +274,12 @@ const JobPortalPage: React.FC = () => {
onClick={() => handleJobClick(job)}
>
<div className="job-header">
<Title level={4} className="job-title">{job.jobTitle}</Title>
<Title level={4} className="job-title">
{job.isUrgent === 1 && (
<Tag color="red" style={{ marginRight: 8, fontSize: 12, lineHeight: '20px' }}></Tag>
)}
{job.jobTitle}
</Title>
<Text className="job-salary">{formatSalary(job.minSalary, job.maxSalary)}</Text>
</div>
<Text className="job-company">{job.companyName}</Text>