unified_dashboard/wwwroot/mobile_reports.ui
2026-04-16 14:42:15 +08:00

58 lines
1.4 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": {
"text": "新建报表",
"onClick": "goto('unified_dashboard/report_template/create.ui')",
"style": {
"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}')"
}
}
]
}