feat: 增强知识库索引与设置页面模块化拆分

扩展知识库索引任务和 RAG 检索支持增量入库和文档去重,优
化本体检测和规则匹配精度,前端设置页面拆分为 LLM、邮件
和 Hermes 员工同步子面板并重构样式,新增日志详情组件和
知识入库日志模型,补充单元测试覆盖。
This commit is contained in:
caoxiaozhu
2026-05-22 23:47:28 +08:00
parent 88ff04bef8
commit 5b388d08c0
84 changed files with 10170 additions and 2599 deletions

View File

@@ -1,6 +1,14 @@
.review-overlay {
display: flex;
align-items: center;
justify-content: center;
}
.review-preview-modal {
width: min(980px, calc(100vw - 40px));
max-height: min(92vh, calc(100vh - 32px));
margin: auto;
flex: none;
display: grid;
grid-template-rows: auto minmax(0, 1fr);
overflow: hidden;
@@ -63,48 +71,56 @@
}
.welcome-quick-actions-title {
margin: 0 0 22px;
margin: 0 0 16px !important;
color: #64748b;
font-size: 12px;
font-weight: 800;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.5px;
}
.welcome-quick-action-grid {
display: flex;
flex-wrap: wrap;
gap: 7px;
gap: 12px;
margin-top: 16px;
}
.welcome-quick-action-btn {
min-height: 30px;
min-height: 32px;
display: inline-flex;
align-items: center;
gap: 5px;
padding: 0 11px;
border: 1px solid rgba(191, 219, 254, 0.92);
border-radius: 999px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.94) 100%);
color: #1d4ed8;
gap: 6px;
padding: 0 14px;
border: 1px solid #cbd5e1;
border-radius: 12px;
background: #ffffff;
color: #334155;
font-size: var(--wb-fs-chip);
font-weight: 700;
font-weight: 600;
line-height: 1.2;
box-shadow: 0 4px 10px rgba(59, 130, 246, 0.07);
transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
transition: all 0.2s ease;
}
.welcome-quick-action-btn i {
font-size: 13px;
color: #2563eb;
font-size: 14px;
color: #64748b;
transition: color 0.2s ease;
}
.welcome-quick-action-btn:hover:not(:disabled) {
transform: translateY(-1px);
border-color: rgba(59, 130, 246, 0.34);
box-shadow: 0 7px 14px rgba(59, 130, 246, 0.12);
border-color: #10b981;
background: #ecfdf5;
color: #059669;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}
.welcome-quick-action-btn:hover:not(:disabled) i {
color: #059669;
}
.welcome-quick-action-btn:disabled {
opacity: 0.48;
opacity: 0.5;
cursor: not-allowed;
}