From 4ce76304cb435be1f17bf51b8e657f9aef44127e Mon Sep 17 00:00:00 2001 From: speakeloudest Date: Mon, 15 Jun 2026 15:29:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B5=B7=E5=A4=96appID?= =?UTF-8?q?=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Home/components/DownloadButton.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/pages/Home/components/DownloadButton.vue b/src/pages/Home/components/DownloadButton.vue index cb17da1..269ad32 100644 --- a/src/pages/Home/components/DownloadButton.vue +++ b/src/pages/Home/components/DownloadButton.vue @@ -27,6 +27,16 @@ + + 没有海外Apple ID? + +
@@ -92,6 +102,11 @@ const FIXED_LINKS: Record = { const isAndroid = computed(() => currentPlatform.value === 'android') const isIOS = computed(() => currentPlatform.value === 'ios') +const isApplePlatform = computed(() => currentPlatform.value === 'ios' || currentPlatform.value === 'mac') +const helpLink = computed(() => { + const ic = getAllQueryString('ic') || 'uSSfgY6oAP' + return `https://hifastvpn.com/help?ic=${ic}` +}) onMounted(() => { const ua = navigator.userAgent; @@ -202,4 +217,3 @@ const otherButtons = computed(() => { return allDownloadOptions.value.filter(opt => opt.key !== currentPlatform.value) }) -