perf: 优化批量上传

This commit is contained in:
richarjiang
2026-05-01 10:04:16 +08:00
parent 66a9ee2950
commit e2fd091b4e
4 changed files with 311 additions and 71 deletions

View File

@@ -226,12 +226,12 @@ export function LevelDialog({
onChange={(e) =>
setFormData((prev) => ({ ...prev, answer: e.target.value }))
}
placeholder="请输入答案(最多4个字)"
maxLength={4}
placeholder="请输入答案(最多8个字)"
maxLength={8}
required
/>
<p className="text-xs text-muted-foreground text-right">
{formData.answer.length}/4
{formData.answer.length}/8
</p>
</div>