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

@@ -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>