Hermes Agent 6dae1676ef feat: 新增商家产品商城页面(storefront)
- 左侧可收缩产品分类树
- 右侧产品列表(卡片式)和产品详情
- 未登录可浏览,登录后显示购买按钮
- 页面和API注册到load_path.py
2026-06-23 18:19:42 +08:00

124 lines
4.3 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "0"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"width": "100%",
"alignItems": "center",
"padding": "16px 24px",
"marginBottom": "0"
},
"subwidgets": [
{
"widgettype": "Title2",
"options": {
"text": "产品商城",
"fontWeight": "700"
}
},
{
"widgettype": "Filler"
},
{
"widgettype": "Text",
"options": {
"text": "浏览产品,点击了解详情",
"fontSize": "14px"
}
}
]
},
{
"widgettype": "HBox",
"options": {
"width": "100%",
"css": "filler",
"gap": "0"
},
"subwidgets": [
{
"widgettype": "VBox",
"id": "category_sidebar",
"options": {
"width": "280px",
"minWidth": "48px",
"borderRight": "1px solid #e0e0e0",
"overflowY": "auto"
},
"subwidgets": [
{
"widgettype": "Tree",
"id": "category_tree",
"options": {
"title": "产品分类",
"idField": "id",
"textField": "name",
"parentField": "parent_id",
"dataurl": "{{entire_url('./api/get_categories.dspy')}}"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "product_list",
"params_mapping": {
"mapping": {
"id": "category_id"
},
"need_other": false
},
"options": {
"method": "POST",
"url": "{{entire_url('./api/get_products.dspy')}}"
}
}
]
}
]
},
{
"widgettype": "VBox",
"options": {
"css": "filler",
"padding": "16px 24px",
"overflowY": "auto"
},
"subwidgets": [
{
"widgettype": "Title4",
"options": {
"text": "产品列表",
"fontWeight": "600",
"marginBottom": "12px"
}
},
{
"widgettype": "VBox",
"id": "product_list",
"options": {
"width": "100%",
"css": "filler"
}
},
{
"widgettype": "VBox",
"id": "product_detail",
"options": {
"width": "100%",
"marginTop": "24px"
}
}
]
}
]
}
]
}