From 9ef744a6b988bf246157035a705cf2334f36d201 Mon Sep 17 00:00:00 2001 From: al Date: Tue, 21 Jan 2025 17:06:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E9=97=AD=E6=97=A0=E6=95=88=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/BottomNav/index.js | 65 ++++++++++++++++------------------- 1 file changed, 30 insertions(+), 35 deletions(-) diff --git a/components/BottomNav/index.js b/components/BottomNav/index.js index 312ba06..7345f3d 100644 --- a/components/BottomNav/index.js +++ b/components/BottomNav/index.js @@ -21,9 +21,6 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) { // console.log("Current Inviter: " + currentInviter); changeInviter(currentInviter); } - setTimeout(() => { - handleGetWebsocketData(); - }, 2000); }, [pathname]); useEffect(() => { const getDtata = async () => { @@ -107,39 +104,37 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) { return isActive; }; const handleGetWebsocketData = (data) => { - // if (data.d.unread_cnt > 0) { - // changeNoticeCount(data.d.unread_cnt); - // const { n_type, title } = data.d.notif; - const n_type = 0; - const title = "系统通知的更好打开撒服务"; - Toast.show({ - type: "info", - maskClassName: "notice-toast", - content: ( -
- -
-

{`收到一条${ - n_type === 0 - ? "系统" - : n_type === 1 - ? "审核" - : n_type === 2 - ? "付费" - : "活动" - }通知`}

-

{title}

+ if (data.d.unread_cnt > 0) { + changeNoticeCount(data.d.unread_cnt); + const { n_type, title } = data.d.notif; + Toast.show({ + type: "info", + maskClassName: "notice-toast", + content: ( +
+ +
+

{`收到一条${ + n_type === 0 + ? "系统" + : n_type === 1 + ? "审核" + : n_type === 2 + ? "付费" + : "活动" + }通知`}

+

{title}

+
-
- ), - position: "top", - duration: 1000000, - }); - // } + ), + position: "top", + duration: 1000000, + }); + } }; return ( <>