收口个人中心充值商品卡组件

个人中心充值商品整卡按钮改用 PlatformSubpanel as button

充值弹窗测试断言商品卡接入公共交互壳

补充 PlatformUiKit 收口文档和 Hermes 决策记录
This commit is contained in:
2026-06-10 12:36:16 +08:00
parent 1df16377ce
commit d59654f277
4 changed files with 24 additions and 4 deletions

View File

@@ -3070,11 +3070,16 @@ function RechargeProductCard({
const value = buildRechargeProductValueLabel(product);
return (
<button
<PlatformSubpanel
as="button"
type="button"
surface="platform"
onClick={() => onBuy(product)}
disabled={Boolean(submittingProductId)}
className="platform-subpanel platform-interactive-card relative min-h-[7.25rem] rounded-[1.15rem] px-3.5 py-3.5 text-left disabled:cursor-not-allowed disabled:opacity-60"
interactive
radius="sm"
padding="none"
className="platform-interactive-card relative min-h-[7.25rem] px-3.5 py-3.5 text-left"
>
{badgeLabel ? (
<PlatformPillBadge
@@ -3099,7 +3104,7 @@ function RechargeProductCard({
{submitting ? '处理中' : '购买'}
</span>
</div>
</button>
</PlatformSubpanel>
);
}