From 4bf03428183d582c2f0b10a0ad551527e08bae09 Mon Sep 17 00:00:00 2001 From: Seven Date: Fri, 6 Mar 2026 21:10:49 +0700 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BA=94=E7=94=A8=E6=A0=87?= =?UTF-8?q?=E9=A2=98=E4=B8=BA=E4=B8=AD=E6=96=87=EF=BC=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?H5=E4=B8=8B=E8=BD=BD=E9=93=BE=E6=8E=A5=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- src/data/apps.json | 3 ++- src/types/app.ts | 3 ++- src/views/AppDetail.vue | 7 +++++++ 4 files changed, 12 insertions(+), 3 deletions(-) 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") }}