fix: replace old top/center/bottom layout with modern VScrollPanel

This commit is contained in:
yumoqing 2026-05-29 00:10:53 +08:00
parent ac80b3df2b
commit 013e9dcc33

View File

@ -1,27 +1,40 @@
{ {
"widgettype":"VBox", "widgettype": "VBox",
"options":{ "options": {
"width":"100%", "width": "100%",
"height":"100%" "height": "100%",
}, "padding": "0"
"subwidgets":[ },
{ "subwidgets": [
"widgettype":"urlwidget", {
"options":{ "widgettype": "HBox",
"url":"{{entire_url('top.ui')}}" "options": {
} "width": "100%",
}, "alignItems": "center",
{ "marginBottom": "16px"
"widgettype":"urlwidget", },
"options":{ "subwidgets": [
"url":"{{entire_url('center.ui')}}" {
} "widgettype": "Title2",
}, "options": {
{ "text": "应用代码管理"
"widgettype":"urlwidget", }
"options":{ }
"url":"{{entire_url('bottom.ui')}}" ]
} },
} {
] "widgettype": "VScrollPanel",
"options": {
"css": "filler"
},
"subwidgets": [
{
"widgettype": "urlwidget",
"options": {
"url": "{{entire_url('/appbase/appcodes')}}"
}
}
]
}
]
} }