添加评查意见的悬浮按钮

This commit is contained in:
2025-07-17 01:16:43 +08:00
parent 290936a339
commit 348128bbe0
4 changed files with 161 additions and 109 deletions
+11 -5
View File
@@ -32,6 +32,7 @@ export interface CrossCheckingTask {
status: CrossCheckingTaskStatus;
score: number;
operation: string;
documentIds: number[];
}
// API响应格式
@@ -79,7 +80,8 @@ const mockTasks: CrossCheckingTask[] = [
progress: 0,
status: CrossCheckingTaskStatus.PENDING,
score: 0,
operation: '去评查'
operation: '去评查',
documentIds: [1, 2, 3, 4, 5]
},
{
id: 2,
@@ -92,7 +94,8 @@ const mockTasks: CrossCheckingTask[] = [
progress: 72,
status: CrossCheckingTaskStatus.IN_PROGRESS,
score: 0,
operation: '进行中'
operation: '进行中',
documentIds: [1, 2, 3, 4, 5]
},
{
id: 3,
@@ -105,7 +108,8 @@ const mockTasks: CrossCheckingTask[] = [
progress: 100,
status: CrossCheckingTaskStatus.COMPLETED,
score: 95,
operation: '查看结果'
operation: '查看结果',
documentIds: [1, 2, 3, 4, 5]
},
{
id: 4,
@@ -118,7 +122,8 @@ const mockTasks: CrossCheckingTask[] = [
progress: 100,
status: CrossCheckingTaskStatus.COMPLETED,
score: 85,
operation: '查看结果'
operation: '查看结果',
documentIds: [1, 2, 3, 4, 5]
},
{
id: 5,
@@ -131,7 +136,8 @@ const mockTasks: CrossCheckingTask[] = [
progress: 100,
status: CrossCheckingTaskStatus.COMPLETED,
score: 92,
operation: '查看结果'
operation: '查看结果',
documentIds: [1, 2, 3, 4, 5]
}
];