From 65728f9bcd16ec7836aec8bf2e40eb3bff35d115 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 20:42:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E8=B7=B3=E8=BD=AC=E6=96=B9?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/noticeDetail/components/NoticeItem/index.jsx | 3 ++- app/search/conponents/Banner/index.jsx | 14 +++++++++++++- app/search/conponents/HostList/index.jsx | 14 +++++++++++++- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/app/noticeDetail/components/NoticeItem/index.jsx b/app/noticeDetail/components/NoticeItem/index.jsx index 2f72ebc..835618f 100644 --- a/app/noticeDetail/components/NoticeItem/index.jsx +++ b/app/noticeDetail/components/NoticeItem/index.jsx @@ -62,7 +62,8 @@ export default function NoticeItem({ leftIcon, hasLink, data }) { router.push(links[1]?.params); } else { if (links[0]?.action === "outward") { - router(links[0]?.params); + // 在新的标签也打开 + window.open(links[0]?.params); } else { // alert(links[0]?.params); // alert(encodeURIComponent(links[0]?.params)); diff --git a/app/search/conponents/Banner/index.jsx b/app/search/conponents/Banner/index.jsx index 4e97e71..e6c8859 100644 --- a/app/search/conponents/Banner/index.jsx +++ b/app/search/conponents/Banner/index.jsx @@ -49,7 +49,19 @@ export default function Banner() { links.filter((it) => it.inward_action_type === "h5")[0]?.url ); } else { - router.push(links[0]?.url); + if (links[0]?.action === "outward") { + // 在新的标签也打开 + window.open(links[0]?.url); + } else { + // alert(links[0]?.params); + // alert(encodeURIComponent(links[0]?.params)); + router.push( + `/webView/${encodeURIComponent( + links[0]?.params + + `?base=${encodeURIComponent(JSON.stringify(base))}` + )}` + ); + } } }} > diff --git a/app/search/conponents/HostList/index.jsx b/app/search/conponents/HostList/index.jsx index 7380f91..5067763 100644 --- a/app/search/conponents/HostList/index.jsx +++ b/app/search/conponents/HostList/index.jsx @@ -72,7 +72,19 @@ export default function HostList() { links.filter((it) => it.inward_action_type === "h5")[0]?.url ); } else { - router.push(links[0]?.url); + if (links[0]?.action === "outward") { + // 在新的标签也打开 + window.open(links[0]?.url); + } else { + // alert(links[0]?.params); + // alert(encodeURIComponent(links[0]?.params)); + router.push( + `/webView/${encodeURIComponent( + links[0]?.params + + `?base=${encodeURIComponent(JSON.stringify(base))}` + )}` + ); + } } }} className="grid grid-cols-[48px,calc(100vw-48px-2rem)]"