diff --git a/app/noticeDetail/components/MessageList/index.jsx b/app/noticeDetail/components/MessageList/index.jsx index 979f5ac..d300a0c 100644 --- a/app/noticeDetail/components/MessageList/index.jsx +++ b/app/noticeDetail/components/MessageList/index.jsx @@ -13,6 +13,7 @@ import { changeNoticeCount } from "@/store/actions"; import { Badge, Toast } from "antd-mobile"; import OwnImage from "@/components/OwnImage"; import OwnIcon from "@/components/OwnIcon"; + const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { const router = useRouter(); const [data, setData] = useState({}); diff --git a/app/noticeDetail/components/ScrollNotice/index.js b/app/noticeDetail/components/ScrollNotice/index.js index 4f8d830..9027509 100644 --- a/app/noticeDetail/components/ScrollNotice/index.js +++ b/app/noticeDetail/components/ScrollNotice/index.js @@ -4,8 +4,11 @@ import React from "react"; import { NoticeBar } from "antd-mobile"; import OwnIcon from "@/components/OwnIcon"; import { useRouter } from "next/navigation"; -/************* ✨ Codeium Command ⭐ *************/ +import baseRequest from "@/utils/baseRequest"; + export default function ScrollNotice({ data }) { + const base = baseRequest(); + const router = useRouter(); // const [fadeAnim] = useState(new Animated.Value(300)); // 透明度初始值为0 // let animation = Animated.timing(fadeAnim, { @@ -53,7 +56,7 @@ export default function ScrollNotice({ data }) { // alert(encodeURIComponent(links[0]?.params)); router.push( `/webView/${encodeURIComponent( - links[0]?.params + + links[0]?.url + (links[0]?.action === "webViewWithOutHeaderInward" || links[0]?.action === "webViewHeaderInward" ? `?base=${encodeURIComponent(JSON.stringify(base))}`