fix: 1. 修改dockerFile

2. 修复一些合同起草的刷新报错问题
This commit is contained in:
2025-12-09 14:46:07 +08:00
parent 59c127806c
commit de923f6521
10 changed files with 251 additions and 86 deletions
+1 -1
View File
@@ -552,7 +552,7 @@ export async function getDocumentTypes(token?: string): Promise<{data: DocumentT
}
// 如果没有 documentTypeIds,返回所有文档类型(不添加过滤条件)
const response = await postgrestGet<DocumentType[]>('/api/postgrest/proxy/ocument_types', { ...params, token });
const response = await postgrestGet<DocumentType[]>('/api/postgrest/proxy/document_types', { ...params, token });
if (response.error) {
return { error: response.error, status: response.status };