From de15daecd593d9b18cda6673fb1dff3e37d602a2 Mon Sep 17 00:00:00 2001 From: al Date: Fri, 12 Jul 2024 22:52:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=A2=E6=9C=8D=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E5=8A=9F=E8=83=BD=E5=AD=98=E5=9C=A8=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/public.js | 23 +++++++++ app/layout.js | 4 +- app/messageDetail/page.js | 67 +++++++++++++----------- app/my/page.js | 11 ++-- app/my/setting/page.js | 2 + app/my/wallet/page.js | 3 ++ app/page.js | 6 +-- app/profile/[mid]/page.js | 6 +-- app/space/[id]/page.js | 2 +- app/space/page.js | 14 +++--- components/PostItem/index.js | 2 +- utils/require.js | 98 ++++++++++++++++++------------------ utils/storeInfo.js | 2 +- 13 files changed, 143 insertions(+), 97 deletions(-) diff --git a/api/public.js b/api/public.js index 9423225..46486ec 100644 --- a/api/public.js +++ b/api/public.js @@ -2,6 +2,29 @@ import { get } from "@/utils/storeInfo"; import require from "@/utils/require"; import { Toast } from "antd-mobile"; //关注和取关功能 +export const handleLogout = async () => { + const account = get("account"); + try { + const data = await require("POST", `/api/login/logout`, { + body: { + mid:account.mid + }, + }); + if (data.ret === -1) { + Toast.show({ + icon: "fail", + content: data.msg, + position: "top", + }); + return; + } else { + console.error(error); + } + } catch (error) { + console.error(error); + } +}; +//关注和取关功能 export const handleFollow = async (isFollowed, followedID, callback) => { const account = get("account"); let body = { diff --git a/app/layout.js b/app/layout.js index f7ad942..68b9d75 100644 --- a/app/layout.js +++ b/app/layout.js @@ -5,6 +5,7 @@ import "./globals.css"; import BottomNav from "../components/BottomNav"; import { Provider } from "react-redux"; import store from "../store"; +import withAuth from "@/components/WithAuth"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { @@ -35,7 +36,8 @@ export default function RootLayout({ children }) {
- {children} + {withAuth({children})} + {/* {children} */}