+
+
+
+ 第 {index + 1} 题
+
+
+ {answer.questionType === 'single' ? '单选题' :
+ answer.questionType === 'multiple' ? '多选题' :
+ answer.questionType === 'judgment' ? '判断题' : '简答题'}
+
+
+
+ {answer.isCorrect ? '正确' : '错误'}
+
+
+
+ 题目:
+ {answer.questionContent || '题目内容加载失败'}
+
+
+ 您的答案:
+ {renderUserAnswer(answer)}
+
+ {!answer.isCorrect && (
+
+ 正确答案:
+ {renderCorrectAnswer(answer)}
+
+ )}
+
+ 得分详情:
+
+ 本题分值:{answer.questionScore || 0} 分,你的得分:{answer.score} 分
+
+
+