fix(web): 审稿面板去重标题/去英文 slug + 伏笔待登记数实时递减 + 移动端决策栏 + 对比度修复

This commit is contained in:
Yaojia Wang
2026-06-30 08:56:23 +02:00
parent 69030eacc3
commit f0f925b195
6 changed files with 114 additions and 40 deletions

View File

@@ -14,19 +14,16 @@ interface PacePanelProps {
// 节奏报告区UX §6.4 ④):节拍图 ▁▃▅ + 注水段列表 + 章末钩子徽标。只读建议。
export function PacePanel({ pace, incomplete }: PacePanelProps) {
return (
<section className="mb-4">
<h2 className="text-xs font-semibold uppercase tracking-wide text-ink-soft">
(pace-checker)
</h2>
<section>
{incomplete ? (
<Badge variant="warning" className="mt-1">
<Badge variant="warning">
<CircleDashed className="h-3 w-3" aria-hidden="true" />
</Badge>
) : pace === null ? (
<p className="mt-1 text-xs text-ink-soft"></p>
<p className="text-xs text-ink-soft"></p>
) : (
<div className="mt-2 space-y-2 text-xs">
<div className="space-y-2 text-xs">
<div>
<p className="mb-1 text-ink-soft"></p>
<BeatMap beatMap={pace.beat_map} />