55 lines
2.0 KiB
XML

{
"widgettype": "VBox",
"options": {
"cheight": 40,
"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": "Button", "options": {"label": "+ 新建知识库", "bgcolor": "#4a90d9", "color": "#fff"}, "binds": [
{"wid": "self", "event": "click", "actiontype": "urlwidget",
"target": "Popup",
"options": {"url": "{{entire_url('/knowledge_bases_list/new_kb_form.ui')}}"}}
]}
]
},
{
"widgettype": "VBox",
"options": {
"width": "100%",
"bgcolor": "#f8f9fa",
"padding": "16px",
"css": "card",
"spacing": "8px"
},
"subwidgets": [
{"widgettype": "Text", "options": {"text": "💾 存储容量", "cfontsize": 14, "fontWeight": "bold", "color": "#333"}},
{
"widgettype": "ProgressBar",
"options": {
"value": 15,
"total": 100,
"width": "100%",
"cheight": 1.2,
"bgcolor": "#e0e0e0",
"color": "#4a90d9"
}
},
{"widgettype": "Text", "options": {"text": "已用 15MB / 总计 100MB · 15%", "cfontsize": 12, "color": "#888"}}
]
},
{
"widgettype": "urlwidget",
"options": {
"url": "{{entire_url('/api/kb/list')}}"
}
}
]
}