This commit is contained in:
@@ -315,7 +315,7 @@ const CompetitionDetail = () => {
|
||||
<div style={{ color: '#888', fontSize: 12 }}>{project.contestant_info?.nickname}</div>
|
||||
</div>
|
||||
<div style={{ fontSize: isMobile ? 18 : 24, color: '#00b96b', fontWeight: 'bold' }}>
|
||||
{project.final_score ?? '待定'}
|
||||
{project.final_score || 0}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
|
||||
@@ -91,7 +91,7 @@ const ProjectDetail = () => {
|
||||
</Descriptions.Item>
|
||||
<Descriptions.Item label="最终得分">
|
||||
<span style={{ color: '#00b96b', fontSize: 18, fontWeight: 'bold' }}>
|
||||
{project.final_score ?? '待定'}
|
||||
{project.final_score || 0}
|
||||
</span>
|
||||
</Descriptions.Item>
|
||||
<Descriptions.Item label="状态">
|
||||
|
||||
Reference in New Issue
Block a user