feat: search video by pubtime

This commit is contained in:
bggRGjQaUbCoE
2024-10-25 18:50:24 +08:00
parent dc68d088df
commit b5a9393a1e
4 changed files with 268 additions and 81 deletions

View File

@@ -20,6 +20,8 @@ class SearchPanelController extends CommonController {
int? userType;
int? categoryId;
String? tag;
int? pubBegin;
int? pubEnd;
late final searchResultController =
Get.find<SearchResultController>(tag: tag);
@@ -103,5 +105,7 @@ class SearchPanelController extends CommonController {
orderSort: orderSort,
userType: userType,
categoryId: categoryId,
pubBegin: pubBegin,
pubEnd: pubEnd,
);
}