feat: 收藏夹搜索 issues #95

This commit is contained in:
guozhigq
2023-10-14 21:33:40 +08:00
parent 353287e053
commit 690b168a45
8 changed files with 224 additions and 10 deletions

View File

@ -71,14 +71,15 @@ class UserHttp {
required int pn,
required int ps,
String keyword = '',
String order = 'mtime'}) async {
String order = 'mtime',
int type = 0}) async {
var res = await Request().get(Api.userFavFolderDetail, data: {
'media_id': mediaId,
'pn': pn,
'ps': ps,
'keyword': keyword,
'order': order,
'type': 0,
'type': type,
'tid': 0,
'platform': 'web'
});