show pgc indexShow

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-01 22:14:37 +08:00
parent a231492f49
commit 18f5ddd937
2 changed files with 7 additions and 1 deletions

View File

@@ -201,7 +201,7 @@ class FavPgcItemModel with MultiSelectData {
json['config_attrs'] as Map<String, dynamic>), json['config_attrs'] as Map<String, dynamic>),
followStatus: json['follow_status'] as int?, followStatus: json['follow_status'] as int?,
isNew: json['is_new'] as int?, isNew: json['is_new'] as int?,
progress: json['progress'] as String?, progress: json['progress'] == '' ? null : json['progress'],
bothFollow: json['both_follow'] as bool?, bothFollow: json['both_follow'] as bool?,
subtitle25: json['subtitle_25'] as String?, subtitle25: json['subtitle_25'] as String?,
); );

View File

@@ -96,6 +96,12 @@ class PgcCardV extends StatelessWidget {
item.progress!, item.progress!,
maxLines: 1, maxLines: 1,
style: style, style: style,
)
else if (item.newEp?.indexShow != null)
Text(
item.newEp!.indexShow!,
maxLines: 1,
style: style,
), ),
], ],
), ),