diff --git a/app/noticeDetail/components/ScrollNotice/index.js b/app/noticeDetail/components/ScrollNotice/index.js index 69fdcc6..3cb42e6 100644 --- a/app/noticeDetail/components/ScrollNotice/index.js +++ b/app/noticeDetail/components/ScrollNotice/index.js @@ -38,7 +38,29 @@ export default function ScrollNotice({ data }) { // // 如果你需要在组件卸载时停止动画,你需要实现一个机制来跟踪组件的状态,并在适当时调用`stopAnimation`。 // }, [fadeAnim]); return ( -
+
{ + const links = data?.hyperlinks; + if (links.length > 1) { + router.push(links[1]?.url); + } else { + 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))}` + )}` + ); + } + } + }} + > } bordered={false} - content={ -
{ - const links = data?.hyperlinks; - if (links.length > 1) { - links[1]?.action === "app_router_path"; - router.push(links[1]?.url); - } else { - links[0]?.action === "outward"; - router.push(links[0]?.url); - } - }} - > - {data.content} -
- } + content={
{data.content}
} style={{ "--background-color": "transparent", "--height": "max-content", diff --git a/utils/tools/handleFuns.js b/utils/tools/handleFuns.js index 13aecdd..7d1fb1a 100644 --- a/utils/tools/handleFuns.js +++ b/utils/tools/handleFuns.js @@ -86,6 +86,7 @@ export const handleShowVideo = (video) => { width="100%" height="100%" controls + autoPlay controlsList="nodownload noplaybackrate noremoteplayback toggleaudio" muted={true} className={`w-full object-contain`}