showcase/wwwroot/detail.ui
yumoqing 1cce05a119 feat: showcase模块 - 产品展示平台(MVP)
- 4张数据表: posts/comments/likes/downloads
- 5种媒体类型: music/mtv/short_video/long_video/ktv
- 社交功能: 点赞(toggle)、评论(嵌套回复)
- KTV付费下载: 购买记录、下载计数
- 11个dspy API端点
- 3个CRUD管理界面(posts/comments/downloads)
- Feed流(类型筛选+分页)、作品详情(浏览计数+点赞状态)
- load_path.py RBAC权限注册
- 符合module/db-table/crud三规范
2026-06-11 14:46:02 +08:00

25 lines
1.0 KiB
XML

{
"widgettype": "VBox",
"options": {"width": "100%", "height": "100%", "padding": "0px"},
"subwidgets": [
{
"widgettype": "HBox",
"options": {"width": "100%", "padding": "16px 24px", "bgcolor": "var(--bricks-card-bg, #fff)", "borderBottom": "1px solid var(--bricks-border, #eee)"},
"subwidgets": [
{
"widgettype": "Button",
"options": {"label": "← 返回", "cfontsize": 0.85},
"binds": [{"wid": "self", "event": "click", "actiontype": "script", "target": "self",
"script": "history.back();"}]
},
{"widgettype": "Title", "options": {"text": "作品详情", "fontSize": "20px", "fontWeight": "bold", "flex": "1", "marginLeft": "16px"}}
]
},
{
"widgettype": "VBox",
"id": "showcase_detail_content",
"options": {"width": "100%", "flex": "1", "padding": "24px", "overflow": "auto"}
}
]
}