feat: 添加应用列表和分类功能,支持搜索和过滤

This commit is contained in:
2026-01-02 17:34:54 +07:00
parent 04bbee2533
commit 00996d121b
8 changed files with 539 additions and 198 deletions

View File

@@ -1,3 +1,36 @@
export interface AppInfo {
id: string
name: string
icon: string
shortDescription: {
'zh-CN': string
'en-US': string
}
description: {
'zh-CN': string
'en-US': string
}
category: string
version: string
buildNumber: string
releaseDate: string
releaseNotes: {
'zh-CN': string[]
'en-US': string[]
}
downloads: {
ios?: string
android?: string
h5?: string
}
screenshots?: string[]
size?: {
ios?: string
android?: string
}
stats: DownloadStats
}
export interface AppVersion {
version: string
buildNumber: string
@@ -21,3 +54,12 @@ export interface DownloadStats {
}
export type Platform = 'ios' | 'android' | 'desktop' | 'unknown'
export interface AppCategory {
id: string
name: {
'zh-CN': string
'en-US': string
}
icon?: string
}