feat: 初步完成评查详情页面的work文档和pdf文档的加载的页面三栏设计的重构。

This commit is contained in:
2026-04-21 15:08:14 +08:00
parent 4e19672b38
commit a3fd2c7fed
13 changed files with 1781 additions and 332 deletions
+9 -6
View File
@@ -1149,13 +1149,16 @@ export async function getReviewPoints_fromApi(fileId: string, request: Request)
// 成功响应
if (response.data) {
// console.log('✅ [getReviewPoints_fromApi] API调用成功,返回数据结构:', JSON.stringify(response.data, null, 2))
// console.log('✅ [getReviewPoints_fromApi] API调用成功,返回数据结构:', JSON.stringify(response.data))
// console.log('✅ [getReviewPoints_fromApi] API调用成功,返回数据结构:', JSON.stringify({
// 评查点数量: response.data.data?.length || 0,
// // 统计信息: response.data.stats,
// // 评查信息: response.data.reviewInfo,
// 有文档数据: response.data.document,
// // 有比对数据: !!response.data.comparison_document,
// // 评分提案数量: response.data.scoring_proposals?.length || 0
// 评查点数量: response.data.data?.length || 0,
// 评查点数量: response.data.data
// 统计信息: response.data.stats,
// 评查信息: response.data.reviewInfo,
// 有文档数据: response.data.document,
// 有比对数据: !!response.data.comparison_document,
// 评分提案数量: response.data.scoring_proposals?.length || 0
// }));
// 返回数据格式与原方法完全一致