diff --git a/index.html b/index.html index 463ea6f..d5bcbc6 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - im-app-store + 应用商店
diff --git a/src/data/apps.json b/src/data/apps.json index ce177fc..13285ea 100644 --- a/src/data/apps.json +++ b/src/data/apps.json @@ -30,7 +30,8 @@ ] }, "downloads": { - "android": "https://s3.yxdim.com/__UNI__44929DB__20260306175925.apk" + "android": "https://s3.yxdim.com/__UNI__44929DB__20260306175925.apk", + "h5": "https://www.yxdim.com" }, "size": { "android": "52.7 MB" diff --git a/src/types/app.ts b/src/types/app.ts index 18e4682..61e0d0a 100644 --- a/src/types/app.ts +++ b/src/types/app.ts @@ -22,8 +22,9 @@ export interface AppItem { releaseDate: string releaseNotes: AppNotes downloads: { - ios: string + ios?: string android: string + h5?: string } size: { ios: string diff --git a/src/views/AppDetail.vue b/src/views/AppDetail.vue index c2ed535..4ced036 100644 --- a/src/views/AppDetail.vue +++ b/src/views/AppDetail.vue @@ -39,6 +39,13 @@ const app = computed(() => apps.find((item) => item.id === route.params.id)); {{ t("Android 下载", "Download for Android") }} + {{ t("Web 打开", "Open Web") }}