fix:1. 优化上传文档页面中的select查询语句

This commit is contained in:
2025-12-17 09:54:44 +08:00
parent 6fa65ff156
commit 07440b3e23
+1 -8
View File
@@ -525,13 +525,6 @@ export async function getTodayDocuments(
created_at, created_at,
document_number, document_number,
path, path,
storage_type,
is_test_document,
evaluation_level,
ocr_result,
extracted_results,
sumary,
remark,
audit_status audit_status
`, `,
order: 'created_at.desc', order: 'created_at.desc',
@@ -550,7 +543,7 @@ export async function getTodayDocuments(
} else { } else {
params.filter = { 'type_id': `in.(${typeIdsStr})` }; params.filter = { 'type_id': `in.(${typeIdsStr})` };
} }
console.log('📋 [getTodayDocuments] 使用文档类型 IDs 查询:', typeIdsStr); // console.log('📋 [getTodayDocuments] 使用文档类型 IDs 查询:', typeIdsStr);
} }
// console.log('发送请求参数:', params); // console.log('发送请求参数:', params);