feat(knowledge): add knowledge base detail page components and hooks

refactor(knowledge): restructure knowledge detail page with new components
feat(components): add FileUploadDialog for file upload functionality
feat(hooks): implement document management hooks for CRUD operations
This commit is contained in:
2025-10-14 15:42:40 +08:00
parent 34181cf025
commit 7384ae36d0
12 changed files with 1456 additions and 356 deletions

View File

@@ -172,7 +172,7 @@ export interface IKnowledgeFile {
size: number;
/** 文件来源类型 */
source_type: string;
/** 文件状态(启用/禁用) */
/** 文件状态(1 启用/ 0 禁用) */
status: string;
/** 文件缩略图base64编码可选 */
thumbnail?: any;