unified_dashboard/wwwroot/mobile_reports.ui
yumoqing c9e1879d80 fix: flatten style to options, fix Button/Text widget properties
- Flatten nested style objects directly into options
- Text/Title use 'text', Button uses 'label'
- All paths use {{entire_url()}}
2026-05-05 19:36:14 +08:00

60 lines
1.8 KiB
XML

{
"widgettype": "VBox",
"options": {
"maxWidth": "100%",
"padding": "15px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"alignItems": "center",
"justifyContent": "space-between",
"marginBottom": "20px"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "报表中心",
"fontSize": "18px",
"fontWeight": "bold"
}
},
{
"widgettype": "Button",
"options": {
"onClick": "goto('unified_dashboard/report_template/create.ui')",
"label": "新建报表",
"backgroundColor": "#007bff",
"color": "white",
"border": "none",
"padding": "6px 12px",
"borderRadius": "4px"
}
}
]
},
{
"widgettype": "DataGrid",
"options": {
"tblname": "report_template",
"where": {
"org_id": "${logined_orgid}",
"is_active": "Y"
},
"fields": [
"template_name",
"report_type",
"created_at"
],
"fieldLabels": {
"template_name": "报表名称",
"report_type": "报表类型",
"created_at": "创建时间"
},
"onRowClick": "view_report('${id}')"
}
}
]
}