From 4b187ca02540b8534ad8ba46b73c8d1bbab0fcb8 Mon Sep 17 00:00:00 2001 From: Seven Date: Thu, 15 Jan 2026 05:53:57 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=98=BE=E7=A4=BA=E6=9D=A1=E4=BB=B6=EF=BC=8C?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E5=AF=B9=20canInstall=20=E5=92=8C=20isIOSSaf?= =?UTF-8?q?ari=20=E7=9A=84=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pwa/download.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/pwa/download.vue b/src/views/pwa/download.vue index 3325b9a..a588412 100644 --- a/src/views/pwa/download.vue +++ b/src/views/pwa/download.vue @@ -31,7 +31,7 @@ const wasUninstalled = computed(() => { // 显示下载按钮的条件 const shouldShowDownloadButton = computed(() => { - const result = platform === "browser" && !isInstalled.value && (canInstall.value || isIOSSafari); + const result = platform === "browser" && !isInstalled.value; console.log("[Download Page] shouldShowDownloadButton:", result); return result; });