commit
All checks were successful
Deploy to Server / deploy (push) Successful in 27s

This commit is contained in:
jeremygan2021
2026-03-11 22:47:35 +08:00
parent 5a87105ec9
commit dbd752b833
7 changed files with 259 additions and 124 deletions

View File

@@ -162,7 +162,16 @@ const ProjectDetail = () => {
<List.Item style={{ background: '#141414', padding: 16, borderRadius: 8, marginBottom: 12, border: '1px solid #303030' }}>
<List.Item.Meta
avatar={<Avatar icon={<UserOutlined />} style={{ backgroundColor: '#00b96b' }} />}
title={<span style={{ color: '#fff' }}>{item.judge_name || '评委'}</span>}
title={
<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
<span style={{ color: '#fff' }}>{item.judge_name || '评委'}</span>
{item.score && (
<Tag color="orange" style={{ margin: 0, fontWeight: 'bold', border: 'none' }}>
{item.score}
</Tag>
)}
</div>
}
description={
<div>
<div style={{ color: '#ccc', marginTop: 8 }}>{item.content}</div>