From 663b8a20c0e26774a69bcae1772dd51d76b566f0 Mon Sep 17 00:00:00 2001 From: al Date: Tue, 17 Dec 2024 17:51:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=89=E6=96=B9=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/WithAuth/index.js | 2 +- utils/tools.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/WithAuth/index.js b/components/WithAuth/index.js index a949009..ae3fc2f 100644 --- a/components/WithAuth/index.js +++ b/components/WithAuth/index.js @@ -37,7 +37,7 @@ export default function WithAuth(WrappedComponent) { "--text-color": "#fff", }, }); - openUrlWithBrowser(); + openUrlWithBrowser(pathname); } }, []); useEffect(() => { diff --git a/utils/tools.js b/utils/tools.js index 78c7ac9..9d01ce4 100644 --- a/utils/tools.js +++ b/utils/tools.js @@ -173,7 +173,7 @@ export function getcountLines(str) { // } // 尝试使用浏览器打开URL -export function openUrlWithBrowser() { +export function openUrlWithBrowser(url) { try { const userAgent = navigator.userAgent; //区分设备类型 @@ -182,7 +182,7 @@ export function openUrlWithBrowser() { "intent://app.tiefen.fun/#Intent;scheme=https;package=com.android.chrome;end"; window.location.href = intentUrl; } else if (/iPhone|iPad|iPod/i.test(userAgent)) { - window.location.href = "x-safari-https://app.tiefen.fun"; + window.location.href = `x-safari-https://app.tiefen.fun${url}`; } else { // setDeviceType("pc"); }