From 08b0636cfcd2be7ad8efd36cee6e43e88289071b Mon Sep 17 00:00:00 2001 From: shinya Date: Sun, 22 Jun 2025 22:16:14 +0800 Subject: [PATCH] feat: show episodes in play record --- src/app/detail/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/detail/page.tsx b/src/app/detail/page.tsx index 09dd4d0..e8a161a 100644 --- a/src/app/detail/page.tsx +++ b/src/app/detail/page.tsx @@ -279,7 +279,9 @@ function DetailPageClient() { {/* 剩余时间 */} - 剩余{' '} + {playRecord.total_episodes > 1 + ? `第${playRecord.index}集 剩余 ` + : '剩余 '} {formatDuration( playRecord.total_time - playRecord.play_time )}