feat(reaction): 学生端表情条组件

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-06 03:27:45 -06:00
co-authored by Claude Opus 5
parent d16e3dddb8
commit 0af91b1e20
3 changed files with 117 additions and 8 deletions
+3 -3
View File
@@ -23,8 +23,8 @@ import {
} from "oj/problem/utils/pythonSyntaxCheck"
// ==================== 异步组件 ====================
const ProblemComment = defineAsyncComponent(
() => import("./ProblemComment.vue"),
const ProblemReaction = defineAsyncComponent(
() => import("./ProblemReaction.vue"),
)
// ==================== 基础状态 ====================
@@ -264,6 +264,6 @@ watch(
:style="{ maxWidth: isDesktop && '50vw', maxHeight: '80vh' }"
v-model:show="commentPanel"
>
<ProblemComment :showStatistics="false" />
<ProblemReaction />
</n-modal>
</template>