2026-04-16 13:41:15 +08:00

116 lines
2.9 KiB
XML

{
"widgettype": "VBox",
"options": {
"maxWidth": "1200px",
"margin": "0 auto",
"padding": "20px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"alignItems": "center",
"justifyContent": "space-between",
"marginBottom": "20px"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "集成CRM管理系统",
"fontSize": "24px",
"fontWeight": "bold",
"color": "#333"
}
},
{
"widgettype": "Button",
"options": {
"text": "用户管理",
"onClick": "goto('rbac/users/list.ui')"
}
}
]
},
{
"widgettype": "TabPanel",
"options": {
"tabs": [
{
"title": "客户管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "customer_management/customers/list.ui"
}
}
},
{
"title": "商机管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "opportunity_management/opportunities/list.ui"
}
}
},
{
"title": "合同管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "contract_management/contract/list.ui"
}
}
},
{
"title": "财务管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "financial_management/receivables/list.ui"
}
}
},
{
"title": "系统管理",
"content": {
"widgettype": "TabPanel",
"options": {
"tabs": [
{
"title": "用户管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "rbac/users/list.ui"
}
}
},
{
"title": "角色权限",
"content": {
"widgettype": "Frame",
"options": {
"src": "rbac/role/list.ui"
}
}
},
{
"title": "编码管理",
"content": {
"widgettype": "Frame",
"options": {
"src": "appbase/appcodes/list.ui"
}
}
}
]
}
}
}
]
}
}
]
}