Add AboutPage component and integrate sorting options in resource retrieval

This commit is contained in:
2025-05-25 11:27:24 +08:00
parent b610a5db9d
commit 6e78707d9e
11 changed files with 139 additions and 27 deletions

View File

@@ -126,3 +126,12 @@ export interface ServerConfig {
server_description: string;
site_info: string;
}
export enum RSort {
TimeAsc = 0,
TimeDesc = 1,
ViewsAsc = 2,
ViewsDesc = 3,
DownloadsAsc = 4,
DownloadsDesc = 5,
}