render_ui(components=[
{
"type": "Card",
"title": "账户概览",
"children": [
{
"type": "Row",
"gap": 16,
"children": [
{"type": "CreditDisplay", "balance": 4520},
{"type": "PlanBadge", "plan": "pro"},
{"type": "StatusIndicator", "status": "active", "label": "订阅生效中"}
]
},
{"type": "Divider"},
{"type": "ProgressBar", "value": 68, "label": "本月用量 68%"},
{
"type": "Row",
"gap": 8,
"children": [
{"type": "Button", "label": "充值", "action": "recharge", "variant": "primary"},
{"type": "Button", "label": "查看明细", "action": "view_detail", "variant": "ghost"}
]
}
]
}
])