This commit is contained in:
@@ -141,7 +141,10 @@ export default function ProjectDetail() {
|
||||
{comments.map((c) => (
|
||||
<View key={c.id} className='comment-item'>
|
||||
<View className='comment-header'>
|
||||
<Text className='judge-name'>{c.judge_name || '评委'}</Text>
|
||||
<View className='judge-info'>
|
||||
<Text className='judge-name'>{c.judge_name || '评委'}</Text>
|
||||
{c.score && <Text className='judge-score'>{c.score}分</Text>}
|
||||
</View>
|
||||
<Text className='comment-time'>{c.created_at?.substring(0, 16)}</Text>
|
||||
</View>
|
||||
<Text className='comment-content'>{c.content}</Text>
|
||||
|
||||
Reference in New Issue
Block a user