新增: AI Chat多项增强(审批去重/编辑重发/导出/实体引用/会话置顶搜索)+任务推进链df-nodes落地

This commit is contained in:
lxy
2026-06-16 12:41:13 +08:00
parent 212a927eee
commit 7d5cd4c89a
62 changed files with 4576 additions and 248 deletions
+5 -2
View File
@@ -55,7 +55,9 @@ export function parseTags(tags: string | null): string[] {
}
export function useKnowledgeStore() {
// ── 加载列表(默认排除 archived) ──
// ── 加载列表(library:默认仅 published,F-260616-02 决策 a) ──
// 后端 knowledge_list 默认收窄为 published,无需前端传 status。
// 显式 status 仍透传(如 status='archived' 查归档)。
async function loadList(status?: string) {
const seq = ++_itemsReqSeq
state.loading = true
@@ -72,7 +74,8 @@ export function useKnowledgeStore() {
}
}
// ── 加载审核收件箱(候选列表) ──
// ── 加载待处理收件箱(candidate + pending_review,F-260616-02 决策 a) ──
// 后端 knowledge_list_candidates 已收两种待处理状态,前端调用不变。
async function loadCandidates() {
const seq = ++_itemsReqSeq
try {