收口大鱼关卡元信息标签

将大鱼吃小鱼关卡元信息迁移到 PlatformPillBadge

补充关卡元信息公共胶囊断言

更新 PlatformUiKit 文档和 Hermes 决策记录
This commit is contained in:
2026-06-10 13:48:09 +08:00
parent 11193112b6
commit 448b0697ee
4 changed files with 25 additions and 9 deletions

View File

@@ -279,14 +279,20 @@ function BigFishLevelCard({
<div className="mt-2 line-clamp-2 text-sm leading-5 text-[var(--platform-text-base)]">
{level.oneLineFantasy}
</div>
<div className="mt-3 flex flex-wrap gap-2 text-xs text-[var(--platform-text-soft)]">
<span> {level.preyWindow.join('/') || '-'}</span>
<span> {level.threatWindow.join('/') || '-'}</span>
<span> {assetReadyLabel(mainImageSlot)}</span>
<span>
<div className="mt-3 flex flex-wrap gap-2">
<PlatformPillBadge tone="muted" size="xxs">
{level.preyWindow.join('/') || '-'}
</PlatformPillBadge>
<PlatformPillBadge tone="muted" size="xxs">
{level.threatWindow.join('/') || '-'}
</PlatformPillBadge>
<PlatformPillBadge tone="muted" size="xxs">
{assetReadyLabel(mainImageSlot)}
</PlatformPillBadge>
<PlatformPillBadge tone="muted" size="xxs">
{' '}
{[assetReadyLabel(idleSlot), assetReadyLabel(moveSlot)].join('/')}
</span>
</PlatformPillBadge>
</div>
</div>
</div>