From 0d59fd1bbb33e3128ec28a7e4bc433aefc032704 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8C=97=E6=9E=B3?=
<7854742+wang_rumeng@user.noreply.gitee.com>
Date: Fri, 29 Aug 2025 09:39:16 +0800
Subject: [PATCH] =?UTF-8?q?=E7=B2=97=E5=89=AA=E7=B2=BE=E5=89=AA=E4=BB=BB?=
=?UTF-8?q?=E6=84=8F=E6=9C=89=E6=95=B0=E6=8D=AE=E5=B0=B1=E5=AE=8C=E6=88=90?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
components/pages/work-flow/media-viewer.tsx | 2 +-
components/pages/work-flow/use-workflow-data.tsx | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/components/pages/work-flow/media-viewer.tsx b/components/pages/work-flow/media-viewer.tsx
index 6ce26eb..0fb78cd 100644
--- a/components/pages/work-flow/media-viewer.tsx
+++ b/components/pages/work-flow/media-viewer.tsx
@@ -300,7 +300,7 @@ export const MediaViewer = React.memo(function MediaViewer({
return (
{/* 背景模糊的视频 */}
diff --git a/components/pages/work-flow/use-workflow-data.tsx b/components/pages/work-flow/use-workflow-data.tsx
index 9762b8a..0b060d1 100644
--- a/components/pages/work-flow/use-workflow-data.tsx
+++ b/components/pages/work-flow/use-workflow-data.tsx
@@ -292,6 +292,7 @@ export function useWorkflowData() {
taskCurrent.currentStage = 'final_video';
taskCurrent.final.url = task.task_result.video;
taskCurrent.final.note = 'simple';
+ taskCurrent.status = 'COMPLETED';
}
}
@@ -464,12 +465,14 @@ export function useWorkflowData() {
taskCurrent.currentStage = 'final_video';
taskCurrent.final.url = data.final_simple_video.video;
taskCurrent.final.note = 'simple';
+ taskCurrent.status = 'COMPLETED';
}
if (data.final_video && data.final_video.video) {
taskCurrent.currentStage = 'final_video';
taskCurrent.final.url = data.final_video.video;
taskCurrent.final.note = 'final';
+ taskCurrent.status = 'COMPLETED';
}
}