From 574656482516962fada25cf2e5cd276a68c8e4df Mon Sep 17 00:00:00 2001 From: brianling Date: Thu, 16 Jul 2026 06:44:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=93=E6=9E=9C=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E5=BD=93=E5=89=8D=E9=A2=98=E7=9A=84=E8=AF=84?= =?UTF-8?q?=E5=88=86=E6=A0=87=E5=87=86=E5=92=8C=E5=8F=82=E8=80=83=E7=AD=94?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ResultDrawer.vue | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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; }