增加周榜,月榜,日榜搜索和批量下载

This commit is contained in:
2025-08-23 15:04:24 +08:00
parent 46e46e6410
commit 20b336cf31
18 changed files with 1743 additions and 427 deletions
+14
View File
@@ -91,6 +91,20 @@ class DownloadService {
return apiService.post(`/api/download/artist/${artistId}`, options);
}
/**
* 下载排行榜作品
*/
async downloadRankingArtworks(options: {
mode: 'day' | 'week' | 'month';
type: 'art' | 'manga' | 'novel';
limit?: number;
size?: string;
quality?: string;
format?: string;
}) {
return apiService.post('/api/download/ranking', options);
}
/**
* 获取已下载的文件列表
*/