From f286c4f940b6f0ecdcaf25420f4fbf2c9bc6a889 Mon Sep 17 00:00:00 2001 From: linkeyu <798648091@qq.com> Date: Wed, 22 Jul 2026 17:53:50 +0800 Subject: [PATCH 1/2] fix(admin): clarify insufficient watch duration 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 b159d6d..1aa5b66 100644 --- a/src/app/(main)/ad-revenue-report/page.tsx +++ b/src/app/(main)/ad-revenue-report/page.tsx @@ -76,7 +76,7 @@ const REWARD_STATUS_HINT: Record = { const PLAYBACK_STATUS_TAG: Record = { completed: { color: 'green', label: '已完成' }, - too_short: { color: 'gold', label: '未满10秒' }, + too_short: { color: 'gold', label: '观看时长不足' }, closed_early: { color: 'default', label: '提前关闭' }, unknown: { color: 'default', label: '未知' }, }; -- 2.52.0 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 2/2] 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) => { -- 2.52.0