{ "widgettype": "VBox", "options": {"width": "100%", "height": "100%", "padding": "24px", "gap": "16px"}, "subwidgets": [ { "widgettype": "Title2", "options": {"text": "审计日志"} }, { "widgettype": "Text", "options": {"text": "记录关键操作,仅 owner.audit 角色可查看", "cfontsize": 1.1, "color": "#888"} }, { "widgettype": "DataGrid", "options": { "width": "100%", "height": "100%", "dataurl": "{{entire_url('/app_audit/api/audit.dspy')}}", "method": "POST", "params": {"action": "list"}, "row_height": 40, "fields": [ {"name": "created_at", "label": "时间", "datatype": "str", "width": 180}, {"name": "username", "label": "用户", "datatype": "str", "width": 120}, {"name": "action", "label": "动作", "datatype": "str", "width": 140}, {"name": "target", "label": "对象", "datatype": "str", "width": 180}, {"name": "result", "label": "结果", "datatype": "str", "width": 80}, {"name": "client_ip", "label": "IP", "datatype": "str", "width": 130}, {"name": "detail", "label": "详情", "datatype": "str", "width": 320} ] } } ] }