yumoqing 309f366839 feat: add wwwroot/index.ui as module entry point
Integrate all module .ui and .dspy files into a single navigation page
using {{entire_url()}} for all path references.
2026-05-05 19:04:01 +08:00

212 lines
7.9 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "20px",
"backgroundColor": "#F9FAFB"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"label": "客户管理",
"fontSize": "24px",
"fontWeight": "bold",
"color": "#1E40AF",
"marginBottom": "20px"
}
},
{
"widgettype": "ResponsableBox",
"options": {
"gap": "16px",
"minWidth": "250px"
},
"subwidgets": [
{
"widgettype": "VBox",
"options": {
"backgroundColor": "#FFFFFF",
"borderRadius": "8px",
"padding": "20px",
"boxShadow": "0 1px 3px rgba(0,0,0,0.1)",
"cursor": "pointer"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.customer_content",
"options": {
"url": "{{entire_url('customer_list.ui')}}"
},
"mode": "replace"
}
],
"subwidgets": [
{
"widgettype": "Text",
"options": {
"label": "客户列表",
"fontSize": "18px",
"fontWeight": "bold",
"color": "#1E40AF"
}
},
{
"widgettype": "Text",
"options": {
"label": "查看所有客户信息,支持搜索和筛选",
"fontSize": "14px",
"color": "#6B7280",
"marginTop": "8px"
}
}
]
},
{
"widgettype": "VBox",
"options": {
"backgroundColor": "#FFFFFF",
"borderRadius": "8px",
"padding": "20px",
"boxShadow": "0 1px 3px rgba(0,0,0,0.1)",
"cursor": "pointer"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.customer_content",
"options": {
"url": "{{entire_url('customer_edit.ui')}}"
},
"mode": "replace"
}
],
"subwidgets": [
{
"widgettype": "Text",
"options": {
"label": "新建客户",
"fontSize": "18px",
"fontWeight": "bold",
"color": "#059669"
}
},
{
"widgettype": "Text",
"options": {
"label": "创建新的客户档案",
"fontSize": "14px",
"color": "#6B7280",
"marginTop": "8px"
}
}
]
},
{
"widgettype": "VBox",
"options": {
"backgroundColor": "#FFFFFF",
"borderRadius": "8px",
"padding": "20px",
"boxShadow": "0 1px 3px rgba(0,0,0,0.1)",
"cursor": "pointer"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.customer_content",
"options": {
"url": "{{entire_url('customer_pool.ui')}}"
},
"mode": "replace"
}
],
"subwidgets": [
{
"widgettype": "Text",
"options": {
"label": "客户池",
"fontSize": "18px",
"fontWeight": "bold",
"color": "#D97706"
}
},
{
"widgettype": "Text",
"options": {
"label": "公海客户池,领取和管理公共客户资源",
"fontSize": "14px",
"color": "#6B7280",
"marginTop": "8px"
}
}
]
},
{
"widgettype": "VBox",
"options": {
"backgroundColor": "#FFFFFF",
"borderRadius": "8px",
"padding": "20px",
"boxShadow": "0 1px 3px rgba(0,0,0,0.1)",
"cursor": "pointer"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.customer_content",
"options": {
"url": "{{entire_url('handover_list.ui')}}"
},
"mode": "replace"
}
],
"subwidgets": [
{
"widgettype": "Text",
"options": {
"label": "客户交接",
"fontSize": "18px",
"fontWeight": "bold",
"color": "#7C3AED"
}
},
{
"widgettype": "Text",
"options": {
"label": "管理客户交接流程和记录",
"fontSize": "14px",
"color": "#6B7280",
"marginTop": "8px"
}
}
]
}
]
},
{
"widgettype": "VBox",
"id": "customer_content",
"options": {
"width": "100%",
"flex": "1",
"marginTop": "20px",
"backgroundColor": "#FFFFFF",
"borderRadius": "8px",
"padding": "20px",
"boxShadow": "0 1px 3px rgba(0,0,0,0.1)"
}
}
]
}