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"); }