diff --git a/src/components/ResultDrawer.vue b/src/components/ResultDrawer.vue index 842c8b7..6466c17 100644 --- a/src/components/ResultDrawer.vue +++ b/src/components/ResultDrawer.vue @@ -20,6 +20,15 @@ 满分:{{ currentQuestion.maxScore }} +
+
当前评分标准
+
{{ currentQuestion.rubric }}
+
+
+
参考答案
+
{{ currentQuestion.referenceAnswer }}
+
+
{{ gradingStore.currentResult.score }}
建议分数
@@ -306,6 +315,24 @@ async function confirmScore() { padding: 10px; border-radius: 6px; } +.rubric-text { + font-size: 13px; + color: #333; + line-height: 1.6; + background: #fff7e6; + padding: 10px; + border-radius: 6px; + white-space: pre-wrap; +} +.reference-text { + font-size: 13px; + color: #666; + line-height: 1.6; + background: #f0f9eb; + padding: 10px; + border-radius: 6px; + white-space: pre-wrap; +} .teacher-score-input { margin-top: 4px; }