diff --git a/src/components/VideoCard.tsx b/src/components/VideoCard.tsx index 2951e5b..1da9e74 100644 --- a/src/components/VideoCard.tsx +++ b/src/components/VideoCard.tsx @@ -849,23 +849,6 @@ const VideoCard = forwardRef(function VideoCard )} - {/* 年份徽章 */} - {config.showYear && actualYear && actualYear !== 'unknown' && actualYear.trim() !== '' && ( -
{ - e.preventDefault(); - return false; - }} - > - {actualYear.slice(-2)} -
- )} {/* 季度徽章 */} {seasonNumber && ( @@ -906,7 +889,7 @@ const VideoCard = forwardRef(function VideoCard {actualEpisodes && actualEpisodes > 1 && orientation === 'vertical' && (
(function VideoCard return false; }} > - {currentEpisode - ? `${currentEpisode}/${actualEpisodes}` - : actualEpisodes} + {/* 集数显示 */} +
{ + e.preventDefault(); + return false; + }} + > + 共{actualEpisodes}集 +
+ + {/* 年份显示 */} + {actualYear && actualYear !== 'unknown' && actualYear.trim() !== '' && ( +
{ + e.preventDefault(); + return false; + }} + > + {actualYear.slice(-2)}年 +
+ )}
)}