guoziyun há 10 meses atrás
pai
commit
6f8f42bf41
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      views/v2/share.ejs

+ 3 - 3
views/v2/share.ejs

@@ -406,7 +406,7 @@
 
   <script>
 
-    // claim bonus 超过2秒自动跳转到下载页
+    // claim bonus 超过1秒自动跳转到下载页
     document.addEventListener('DOMContentLoaded', function () {
       // 检查 URL 中是否包含 check=1 参数
       const urlParams = new URLSearchParams(window.location.search);
@@ -436,13 +436,13 @@
           appLaunched = true;
         });
 
-        // 2 秒后检查是否成功拉起 App
+        // 1 秒后检查是否成功拉起 App
         setTimeout(function () {
           if (!appLaunched) {
             // 未拉起 App,跳转到下载页
             window.location.href = downloadUrl;
           }
-        }, 2000);
+        }, 1000);
       }
 
       // 为 Claim Bonus 按钮添加防重复点击逻辑(可选)