From 49d0da3f8dec178823a217f363aef02083eacc12 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 11:17:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B6=88=E6=81=AF=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/noticeDetail/components/NoticeItem/index.jsx | 14 +++----------- app/search/conponents/Banner/index.jsx | 6 +++--- app/search/conponents/HostList/index.jsx | 10 +++++----- 3 files changed, 11 insertions(+), 19 deletions(-) diff --git a/app/noticeDetail/components/NoticeItem/index.jsx b/app/noticeDetail/components/NoticeItem/index.jsx index c6e5a34..0e2b7bd 100644 --- a/app/noticeDetail/components/NoticeItem/index.jsx +++ b/app/noticeDetail/components/NoticeItem/index.jsx @@ -19,13 +19,13 @@ export default function NoticeItem({ leftIcon, hasLink, data }) { {/* */} {leftIcon} -

{data?.title}

+

{data?.title}

               {data?.message}
             
{/* 链接跳转 */} - {!!data?.hyperlinks && ( + {data?.hyperlinks && data?.hyperlinks[0].action && (
{}} className="rounded-xl p-2 flex flex-row items-center my-2 bg-[#FFFFFF1A]" @@ -53,17 +53,9 @@ export default function NoticeItem({ leftIcon, hasLink, data }) { } const links = data?.hyperlinks; if (links) { - // const linkAndParams = goToPage( - // links[1]?.params - // ); - // if (linkAndParams) { - // typeof linkAndParams === "object" - // ? router.push(...linkAndParams) - // : router.push(linkAndParams); - // } if (links.length > 1) { links[1]?.action === "app_router_path"; - router.push("/" + links[1]?.params); + router.push(links[1]?.params); } else { links[0]?.action === "outward"; router.push(links[0]?.params); diff --git a/app/search/conponents/Banner/index.jsx b/app/search/conponents/Banner/index.jsx index d6e8244..ae99e9d 100644 --- a/app/search/conponents/Banner/index.jsx +++ b/app/search/conponents/Banner/index.jsx @@ -17,7 +17,7 @@ export default function Banner() { const _data = await requireAPI( "POST", "/api/activity_banner/list", - null, + { body: { device_type: 2 } }, true ); if (_data.ret === -1) { @@ -39,9 +39,9 @@ export default function Banner() { }, []); const items = useCallback( (item, index) => ( - +
{ const links = item?.hyperlinks; if (links.length > 1) { diff --git a/app/search/conponents/HostList/index.jsx b/app/search/conponents/HostList/index.jsx index a41d606..7380f91 100644 --- a/app/search/conponents/HostList/index.jsx +++ b/app/search/conponents/HostList/index.jsx @@ -39,10 +39,6 @@ export default function HostList() { }, []); return (
- {/* Banner预留位置 */} -
- -

猜你想看

{/*
{item.title} - {item.age && ( + {!!item.age && ( <>
{item?.gender === 1 ? ( @@ -142,6 +138,10 @@ export default function HostList() { ))} + {/* Banner预留位置 */} +
+ +
); }