fix: .ui widget id去app.前缀——getWidgetById按.分段查找,DOM id须裸名,target保留app.xxx路由

This commit is contained in:
pipeline-agent 2026-08-30 13:55:53 +08:00
parent 4bd6be3e40
commit e675e69400
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@
{"widgettype": "UiFile", "options": {"name": "file", "label": "导入文件", "required": "true"}},
{"widgettype": "Button", "options": {"label": "开始导入"}}
]},
{"widgettype": "VBox", "id": "app.scene_import_content", "options": {"width": "100%", "flex": "1", "marginTop": "20px"}}
{"widgettype": "VBox", "id": "scene_import_content", "options": {"width": "100%", "flex": "1", "marginTop": "20px"}}
]
}

View File

@ -13,6 +13,6 @@
"options": {"url": "{{entire_url('/scene/import_page.ui')}}"}, "mode": "replace"}],
"subwidgets": [{"widgettype": "Text", "options": {"label": "场景导入"}}]}
]},
{"widgettype": "VBox", "id": "app.scene_content", "options": {"width": "100%", "flex": "1", "marginTop": "20px"}}
{"widgettype": "VBox", "id": "scene_content", "options": {"width": "100%", "flex": "1", "marginTop": "20px"}}
]
}