llmage/wwwroot/llmcatelog_list.ui
yumoqing 1b74b5bf10 feat: add llm catalog (type) management module
- Add CRUD API for llmcatelog (list/create/update/delete)
- Add llmcatelog.ui as main entry for catalog management
- Add llmcatelog_list.ui as DataViewer interface
- Add index.ui as module navigation page
- Update json/llmcatelog.json with editable section
2026-05-17 00:46:31 +08:00

17 lines
709 B
XML

{
"widgettype": "DataViewer",
"options": {
"url": "{{entire_url('/llmage/api/llmcatelog_list.dspy')}}",
"title": "模型类型管理",
"pageSize": 20,
"new_data_url": "{{entire_url('/llmage/api/llmcatelog_create.dspy')}}",
"update_data_url": "{{entire_url('/llmage/api/llmcatelog_update.dspy')}}",
"delete_data_url": "{{entire_url('/llmage/api/llmcatelog_delete.dspy')}}",
"fields": [
{"name": "id", "title": "ID", "hidden": true},
{"name": "name", "title": "类型名", "width": "200px", "editable": true},
{"name": "description", "title": "类型说明", "width": "50%", "editable": true}
]
}
}