From c55c092e8f0eca08a6b2ebb9c87573f8c1a93360 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 20 May 2025 13:18:25 +0800 Subject: [PATCH] . --- apps/blogai/components/header.tsx | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/apps/blogai/components/header.tsx b/apps/blogai/components/header.tsx index 357e27f..bf52f2e 100644 --- a/apps/blogai/components/header.tsx +++ b/apps/blogai/components/header.tsx @@ -766,15 +766,23 @@ export function DetailPageHeader({ data }: { data: any }) { {showProgressBar && (progress !== "0%" || statusText) && ( -
-
- {loading ? "操作中..." : statusText} +
+ {/* 独立文字层 */} +
+ {loading ? "Processing..." : statusText}
+ + {/* 蓝色进度条 */} +
)} + + + +
);