Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-14 11:40:01 +08:00
parent 22d9fbddf9
commit 0cd57c9bb0
10 changed files with 24 additions and 24 deletions

View File

@@ -26,18 +26,3 @@ enum SearchType {
final String label;
const SearchType(this.label, {this.hasHeader = false});
}
// 簿
enum ArchiveFilterType {
totalrank('默认排序'),
click('播放多'),
pubdate('新发布'),
dm('弹幕多'),
stow('收藏多'),
scores('评论多');
//
// attention('最多喜欢'),
final String desc;
const ArchiveFilterType(this.desc);
}

View File

@@ -47,3 +47,18 @@ enum VideoZoneType {
final int? tids;
const VideoZoneType(this.label, {this.tids});
}
// 搜索类型为视频、专栏及相簿时
enum ArchiveFilterType {
totalrank('默认排序'),
click('播放多'),
pubdate('新发布'),
dm('弹幕多'),
stow('收藏多'),
scores('评论多');
// 专栏
// attention('最多喜欢'),
final String desc;
const ArchiveFilterType(this.desc);
}