From 4acc23ff69fa7a1f0c4738ab08f9258347da65e4 Mon Sep 17 00:00:00 2001 From: linkeyu <798648091@qq.com> Date: Wed, 22 Jul 2026 18:02:59 +0800 Subject: [PATCH] fix(admin): clarify partial playback status label --- src/app/(main)/ad-revenue-report/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(main)/ad-revenue-report/page.tsx b/src/app/(main)/ad-revenue-report/page.tsx index 1aa5b66..189f373 100644 --- a/src/app/(main)/ad-revenue-report/page.tsx +++ b/src/app/(main)/ad-revenue-report/page.tsx @@ -159,7 +159,7 @@ function playbackStatusTag(row: AdRevenueRow) { const hint = entries .map(([status, count]) => `${PLAYBACK_STATUS_TAG[status].label} ${count} 条`) .join(';'); - return { color: 'purple', label: '混合状态', hint: `${hint}。` }; + return { color: 'purple', label: '部分完成', hint: `${hint}。` }; } const fmtFactorRange = (a: number | null, b: number | null) => {