fix: ICP filing info in bottom bar, click to open MIIT

This commit is contained in:
yumoqing 2026-07-22 14:39:30 +08:00
parent 182af8f605
commit eb533ff0bf
2 changed files with 35 additions and 5 deletions

View File

@ -140,11 +140,38 @@
]
},
{
"widgettype": "Text",
"widgettype": "HBox",
"options": {
"text": "© 2026 RAG Server",
"css": "rag-bottom"
}
"css": "rag-bottom",
"justifyContent": "center",
"alignItems": "center",
"spacing": "8px",
"padding": "8px 16px"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "© 2026 开元云(北京)科技有限公司",
"css": "rag-bottom-text"
}
},
{
"widgettype": "Text",
"options": {
"text": "京ICP备2022001945号-2",
"css": "rag-bottom-icp"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "script",
"script": "window.open('https://beian.miit.gov.cn/#/Integrated/index','_blank');"
}
]
}
]
}
]
}

View File

@ -16,4 +16,7 @@ html, body { margin:0; padding:0; height:100%; overflow:hidden; }
.rag-content { flex:1; overflow:auto; padding:0; }
/* Bottom */
.rag-bottom { flex-shrink:0; padding:8px 16px; text-align:center; font-size:12px; color:#888; background:#1a1a1a; border-top:1px solid #333; }
.rag-bottom { flex-shrink:0; font-size:12px; color:#888; background:#1a1a1a; border-top:1px solid #333; }
.rag-bottom-text { color:#888; }
.rag-bottom-icp { color:#666; cursor:pointer; }
.rag-bottom-icp:hover { color:#aaa; }