修正提醒文字

This commit is contained in:
2025-09-29 01:48:34 +08:00
parent f055c1995b
commit 0887347116
7 changed files with 231 additions and 3 deletions

View File

@@ -266,10 +266,15 @@ export default function CombinedTestPage() {
<Card className="mb-8">
<CardHeader>
<CardTitle className="text-xl text-balance">
{phase === "logic" ? currentQ.question : currentQ.statement}
{phase === "logic" ? (currentQ as LogicQuestion).question : (currentQ as CreativeQuestion).statement}
</CardTitle>
{phase === "logic" && (
<p className="text-sm text-muted-foreground mt-2">
</p>
)}
{phase === "creative" && (
<p className="text-sm text-muted-foreground"></p>
<p className="text-sm text-muted-foreground">5=1=</p>
)}
</CardHeader>
<CardContent>

View File

@@ -172,7 +172,7 @@ export default function CreativeTestPage() {
<Card className="mb-8">
<CardHeader>
<CardTitle className="text-xl text-balance">{currentQ.statement}</CardTitle>
<p className="text-sm text-muted-foreground"></p>
<p className="text-sm text-muted-foreground">5=1=</p>
</CardHeader>
<CardContent>
<RadioGroup

View File

@@ -167,6 +167,9 @@ export default function LogicTestPage() {
<Card className="mb-8">
<CardHeader>
<CardTitle className="text-xl text-balance">{currentQ.question}</CardTitle>
<p className="text-sm text-muted-foreground mt-2">
</p>
</CardHeader>
<CardContent>
<RadioGroup value={answers[currentQuestion] || ""} onValueChange={handleAnswerChange} className="space-y-4">