diff --git a/components/ui/character-tab-content.tsx b/components/ui/character-tab-content.tsx index a5aba59..918886a 100644 --- a/components/ui/character-tab-content.tsx +++ b/components/ui/character-tab-content.tsx @@ -33,32 +33,6 @@ interface Role { tags: string[]; } -// Mock 数据 -const mockReplaceVideoData = { - count: 10, - completed: 2, // 已完成个数 - data: [ - { - id: '1', - name: '替换视频1', - videoUrl: ['https://video-base-imf.oss-ap-southeast-7.aliyuncs.com/uploads/FJ1_76a6cd5d-e4dd-4bed-8d5f-65306f146caf-20250812112433.mp4'], - status: 1 - }, { - id: '2', - name: '替换视频1', - videoUrl: [], - status: 2 - }, - { id: '3', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '4', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '5', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '6', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '7', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '8', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '9', name: '替换视频1', videoUrl: [], status: 0 }, - { id: '10', name: '替换视频1', videoUrl: [], status: 0 }, - ] -} interface CharacterTabContentProps { taskSketch: any[]; @@ -402,57 +376,6 @@ export function CharacterTabContent({ - {/* 替换视频进度 预览区域 */} - -
-
- 替换视频进度 - - {mockReplaceVideoData.completed}/{mockReplaceVideoData.count} - -
- - {}} - > - {mockReplaceVideoData.data.map((shot) => ( -
- {shot.status === 0 && ( -
- -
- )} - {shot.status === 1 && ( -
- ))} -
-
-
-