135 lines
5.1 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"padding": "16px",
"spacing": "16px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"width": "100%",
"justifyContent": "space-between",
"alignItems": "center"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "知识库",
"cfontsize": 22,
"fontWeight": "bold",
"color": "#333"
}
},
{
"widgettype": "HBox",
"options": {
"spacing": "8px"
},
"subwidgets": [
{
"widgettype": "Button",
"options": {
"label": "🔍 检索知识",
"bgcolor": "#10b981",
"color": "#fff"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.rag_main_content",
"mode": "replace",
"options": {
"url": "./search.ui"
}
}
]
},
{
"widgettype": "Button",
"options": {
"label": "+ 新建知识库",
"bgcolor": "#4a90d9",
"color": "#fff"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "Popup",
"popup_options": {
"auto_dismiss": false,
"dismiss_events": ["cancel", "submited"],
"movable": true,
"archor": "cc",
"width": "34%",
"height": "60%"
},
"options": {
"url": "{{entire_url('./new_kb_form.ui')}}"
}
}
]
},
{
"widgettype": "Button",
"options": {
"label": "⚙️ 引擎配置",
"bgcolor": "#8b5cf6",
"color": "#fff"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "Popup",
"popup_options": {
"auto_dismiss": false,
"dismiss_events": ["cancel"],
"movable": true,
"archor": "cc",
"width": "50%",
"height": "80%"
},
"options": {
"url": "{{entire_url('../engine_configs_list/index.ui')}}"
}
}
]
}
]
}
]
},
{
"widgettype": "urlwidget",
"options": {
"url": "{{entire_url('./storage_stats.dspy')}}"
}
},
{
"widgettype": "VBox",
"id": "rag_main_content",
"options": {
"css": "filler",
"width": "100%",
"height": "100%"
},
"subwidgets": [
{
"widgettype": "urlwidget",
"options": {
"url": "{{entire_url('./kb_list.dspy')}}"
}
}
]
}
]
}