|
|
@@ -1830,6 +1830,11 @@ class ExamPdfExportService
|
|
|
'question_id' => $item['question_id'] ?? null,
|
|
|
'question_bank_id' => $item['question_bank_id'] ?? null,
|
|
|
'is_correct' => $item['is_correct'] ?? null,
|
|
|
+ // V3 诊断得分计算依赖这两个字段,不能裁掉
|
|
|
+ 'max_score' => $item['max_score'] ?? null,
|
|
|
+ 'score_obtained' => $item['score_obtained'] ?? null,
|
|
|
+ // V3 模块归属计算依赖知识点信息,不能裁掉
|
|
|
+ 'knowledge_points' => $item['knowledge_points'] ?? [],
|
|
|
];
|
|
|
}, $templateData['analysis_data']['question_analysis']);
|
|
|
}
|