entity/wwwroot/import_page.ui

22 lines
1.1 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"widgettype": "VBox",
"options": {"width": "100%", "height": "100%", "padding": "20px"},
"subwidgets": [
{"widgettype": "Text", "options": {"label": "实体文件导入", "fontSize": "20px"}},
{"widgettype": "Text", "options": {"label": "支持 JSON 数组 / JSON Lines / CSV表头 name,code,world_id,scene_id,entity_type,status,attributes_json。事务批量任一条校验失败整批回滚无脏数据。"}},
{"widgettype": "Form",
"options": {
"width": "100%",
"submit_url": "{{entire_url('/entity/api/entity_import.dspy')}}",
"method": "POST",
"fields": [
{"name": "world_id", "label": "目标世界ID", "uitype": "code", "dataurl": "{{entire_url('/entity/api/get_search_world_id.dspy')}}"},
{"name": "scene_id", "label": "目标场景ID", "uitype": "code", "dataurl": "{{entire_url('/entity/api/get_search_scene_id.dspy')}}"},
{"name": "file_name", "label": "文件名", "uitype": "text"},
{"name": "file", "label": "导入文件", "uitype": "file", "required": true}
],
"buttons": [{"label": "开始导入", "type": "submit"}]
}}
]
}