This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user