From adc60b029e3d6cf05ebe91a55371f34932458c81 Mon Sep 17 00:00:00 2001 From: al Date: Fri, 10 Jan 2025 21:56:50 +0800 Subject: [PATCH 01/17] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/noticeDetail/components/MessageList/index.jsx | 4 ++-- components/BottomNav/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/noticeDetail/components/MessageList/index.jsx b/app/noticeDetail/components/MessageList/index.jsx index c77c229..c83eb11 100644 --- a/app/noticeDetail/components/MessageList/index.jsx +++ b/app/noticeDetail/components/MessageList/index.jsx @@ -198,7 +198,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => {
99 ? "+99" : count} + content={count > 99 ? "99+" : count} className="text-lg" />
@@ -259,7 +259,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { 99 ? "+99" : data.contact_cs_urc + data.contact_cs_urc > 99 ? "99+" : data.contact_cs_urc } className="text-lg" /> diff --git a/components/BottomNav/index.js b/components/BottomNav/index.js index f57d1a1..b482193 100644 --- a/components/BottomNav/index.js +++ b/components/BottomNav/index.js @@ -72,7 +72,7 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) { {!!noticeCount && ( 99 ? "+99" : noticeCount} + content={noticeCount > 99 ? "99+" : noticeCount} className="absolute top-0 right-0 z-10" /> )} @@ -83,7 +83,7 @@ function BottomNav({ changeNoticeCount, changeInviter, noticeCount }) { {!!noticeCount && ( 99 ? "+99" : noticeCount} + content={noticeCount > 99 ? "99+" : noticeCount} className="absolute top-0 right-0 z-10" /> )} -- 2.41.0 From b1570602ecff76c12e1d5379516a38cea18549d4 Mon Sep 17 00:00:00 2001 From: al Date: Wed, 15 Jan 2025 12:03:57 +0800 Subject: [PATCH 02/17] =?UTF-8?q?=E6=B7=BB=E5=8A=A0banner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/login/page.js | 2 +- app/my/page.js | 3 +- .../components/NoticeItem/index.jsx | 2 +- app/search/conponents/Banner/index.jsx | 81 +++++++++++++++++++ app/search/conponents/HostList/index.jsx | 74 +++++++++-------- .../person_space_introduce/[mid]/page.js | 1 + components/InOtherApp/index.js | 2 +- components/VideoPlayer/index.jsx | 2 +- components/WithAuth/index.js | 3 +- utils/baseRequest.js | 3 +- utils/tools.js | 26 ++++-- utils/webviewBaseRequest.js | 3 +- 12 files changed, 153 insertions(+), 49 deletions(-) create mode 100644 app/search/conponents/Banner/index.jsx diff --git a/app/login/page.js b/app/login/page.js index acdada0..2c583be 100644 --- a/app/login/page.js +++ b/app/login/page.js @@ -52,7 +52,7 @@ function Login({ handleLogin }) { const showMobal = useRef(); const [iframePageUrl, setIframePageUrl] = useState(null); useEffect(() => { - const userAgent = navigator.userAgent; + const userAgent = window && window.navigator?.userAgent; //区分设备类型 if (/Android/i.test(userAgent)) { setDeviceType("Android"); diff --git a/app/my/page.js b/app/my/page.js index dc5fea0..7fb248e 100644 --- a/app/my/page.js +++ b/app/my/page.js @@ -29,7 +29,6 @@ const My = () => { null, true ); - console.log("------", data); if (data.ret === -1) { Toast.show({ icon: "fail", @@ -122,7 +121,7 @@ const My = () => { }, { url: `my/refund/refundList`, - iconUrl: "/icons/32DP/wallet.png", + iconUrl: "/icons/32DP/refund.png", title: "退款审核", subTitle: account.data.account.role == 3 ? "创作者功能" : "完善资料后解锁", diff --git a/app/noticeDetail/components/NoticeItem/index.jsx b/app/noticeDetail/components/NoticeItem/index.jsx index 8c8b5ad..c6e5a34 100644 --- a/app/noticeDetail/components/NoticeItem/index.jsx +++ b/app/noticeDetail/components/NoticeItem/index.jsx @@ -63,7 +63,7 @@ export default function NoticeItem({ leftIcon, hasLink, data }) { // } 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 new file mode 100644 index 0000000..d6e8244 --- /dev/null +++ b/app/search/conponents/Banner/index.jsx @@ -0,0 +1,81 @@ +import React, { useEffect, useState, useRef, useCallback } from "react"; +import { Toast, Swiper, Image } from "antd-mobile"; +import LoadingMask from "@/components/LoadingMask"; +import { useRouter } from "next/navigation"; +import requireAPI from "@/utils/requireAPI"; +import OwnImage from "@/components/OwnImage"; +import { goToPage } from "@/utils/tools"; +export default function Banner() { + const [bannerList, setBannerList] = useState([]); + const [isLoading, setIsLoading] = useState(false); + const router = useRouter(); + const ref = useRef(null); + useEffect(() => { + const getBannerList = async () => { + setIsLoading(true); + try { + const _data = await requireAPI( + "POST", + "/api/activity_banner/list", + null, + true + ); + if (_data.ret === -1) { + Toast.show({ + icon: "fail", + content: _data.msg, + position: "top", + }); + return; + } + setBannerList(_data.data.list); + } catch (error) { + console.error(error); + } finally { + setIsLoading(false); + } + }; + getBannerList(); + }, []); + const items = useCallback( + (item, index) => ( + +
{ + const links = item?.hyperlinks; + if (links.length > 1) { + router.push( + links.filter((it) => it.inward_action_type === "h5")[0]?.url + ); + } else { + router.push(links[0]?.url); + } + }} + > + +
+
+ ), + [] + ); + return ( +
+ + {bannerList.map((item, index) => items(item, index))} + +
+ ); +} diff --git a/app/search/conponents/HostList/index.jsx b/app/search/conponents/HostList/index.jsx index b60b074..a41d606 100644 --- a/app/search/conponents/HostList/index.jsx +++ b/app/search/conponents/HostList/index.jsx @@ -5,6 +5,7 @@ import { useRouter } from "next/navigation"; import requireAPI from "@/utils/requireAPI"; import OwnImage from "@/components/OwnImage"; import OwnIcon from "@/components/OwnIcon"; +import Banner from "../Banner"; export default function HostList() { const [hostList, setHostList] = useState([]); const [isLoading, setIsLoading] = useState(false); @@ -38,6 +39,10 @@ export default function HostList() { }, []); return (
+ {/* Banner预留位置 */} +
+ +

猜你想看

{/*
{ - if (item.hyperlinks[0].action === "outward") { - window.open(item.hyperlinks[0].url); + const links = item?.hyperlinks; + if (links.length > 1) { + router.push( + links.filter((it) => it.inward_action_type === "h5")[0]?.url + ); } else { - router.push(`space/person_space_introduce/${item.mid}`); + router.push(links[0]?.url); } }} className="grid grid-cols-[48px,calc(100vw-48px-2rem)]" @@ -94,34 +102,37 @@ export default function HostList() { {item.title} - -
- {item?.gender === 1 ? ( - - ) : ( - - )} - - {item.age} - -
-
- - - {item.city} - -
+ {item.age && ( + <> +
+ {item?.gender === 1 ? ( + + ) : ( + + )} + + {item.age} + +
+
+ + + {item.city} + +
+ + )}

{item.text} @@ -131,7 +142,6 @@ export default function HostList() { ))} - {/* Banner预留位置 */}

); } diff --git a/app/space/person_space_introduce/[mid]/page.js b/app/space/person_space_introduce/[mid]/page.js index cc9bf30..a1bd75d 100644 --- a/app/space/person_space_introduce/[mid]/page.js +++ b/app/space/person_space_introduce/[mid]/page.js @@ -175,6 +175,7 @@ export default function PersonSpaceIntroduce() { diff --git a/components/InOtherApp/index.js b/components/InOtherApp/index.js index 8851625..838b29a 100644 --- a/components/InOtherApp/index.js +++ b/components/InOtherApp/index.js @@ -6,7 +6,7 @@ export default function InOtherApp() { //区分是否在微信/微博/qq/支付宝/钉钉内置浏览器中打开 const [isInOtherApp, setIsInOtherApp] = useState(false); useEffect(() => { - const userAgent = navigator.userAgent.toLowerCase(); + const userAgent = window && window.navigator?.userAgent.toLowerCase(); let temIsInOtherApp = userAgent.match(/MicroMessenger/i) == "micromessenger" || userAgent.match(/WeiBo/i) == "weibo" || diff --git a/components/VideoPlayer/index.jsx b/components/VideoPlayer/index.jsx index d10aec8..ae29fd9 100644 --- a/components/VideoPlayer/index.jsx +++ b/components/VideoPlayer/index.jsx @@ -14,7 +14,7 @@ export default function VideoPlayer({ video }) { const [showController, setShowController] = useState(false); const [screenState, setScreenState] = useState(false); const isSliding = useRef(null); - const userAgent = navigator.userAgent; + const userAgent = window && window.navigator?.userAgent; // const currentTime = useMemo(()=>{ // const videoPlayer = document.getElementById("videoPlayer"); // if (videoPlayer) { diff --git a/components/WithAuth/index.js b/components/WithAuth/index.js index 381b62f..054e654 100644 --- a/components/WithAuth/index.js +++ b/components/WithAuth/index.js @@ -1,3 +1,4 @@ +"use client"; import { checkAuth } from "@/utils/auth"; import { useRouter, usePathname, useSearchParams } from "next/navigation"; import { useEffect } from "react"; @@ -10,7 +11,7 @@ export default function WithAuth(WrappedComponent) { const pathname = usePathname(); const searchParams = useSearchParams(); useEffect(() => { - const ua = navigator.userAgent.toLowerCase(); + const ua = window && window.navigator?.userAgent.toLowerCase(); if ( (ua.indexOf("mqqbrowser") > -1 || ua.indexOf("quark") > -1) && ua.indexOf("iphone") > -1 diff --git a/utils/baseRequest.js b/utils/baseRequest.js index 01ad904..fa9fd1f 100644 --- a/utils/baseRequest.js +++ b/utils/baseRequest.js @@ -1,3 +1,4 @@ +"use client"; import { getCookie } from "cookies-next"; import { get } from "./storeInfo"; export default function baseRequest() { @@ -7,7 +8,7 @@ export default function baseRequest() { const mid = getCookie("mid"); const b_ts = new Date().getTime(); let b_dt = 0; - if (/(iPad|iPhone|iPod)/gi.test(navigator.userAgent)) { + if (/(iPad|iPhone|iPod)/gi.test(window && window.navigator?.userAgent)) { b_dt = 1; } const baseRequest = { diff --git a/utils/tools.js b/utils/tools.js index b5ad1a5..40eabc2 100644 --- a/utils/tools.js +++ b/utils/tools.js @@ -1,3 +1,4 @@ +"use client"; import { Toast } from "antd-mobile"; //格式化时间戳 export function formatDeadline(timestamp) { @@ -135,7 +136,7 @@ export function getVideoBase64(url) { canvas.height = video.height; // 判断是否为 iOS 系统 - if (/(iPad|iPhone|iPod)/gi.test(navigator.userAgent)) { + if (/(iPad|iPhone|iPod)/gi.test(window && window.navigator?.userAgent)) { // 在 iOS 系统中,需要手动触发视频加载,然后设置自动播放和静音属性 video.load(); // video.autoplay = true; @@ -182,17 +183,26 @@ export function getcountLines(str) { } // 跳转页面 -// export function goToPage(link) { -// let linkArr = link.split("?"); -// const params = linkArr[1]?.split("&"); -// console.log("params", params); -// if (params == "") return "/my/" + linkArr[0]; -// } +export function goToPage(link) { + let linkArr = link.split("?"); + const params = linkArr[1]?.split("&"); + + if (!params) return linkArr[0]; + // if (linkArr[0].includes("/")) { + // const path = linkArr[0].replace(/^\/+|\/+$/g, ""); + // const pathNames = path.split("/").filter((it) => it != ""); + // return [pathNames[0], { screen: pathNames[1] }]; + // } + const query = params + .map((it) => ({ [it.split("=")[0]]: it.split("=")[1] })) + .reduce((acc, cur) => ({ ...acc, ...cur }), {}); + return [linkArr[0], query]; +} // 尝试使用浏览器打开URL export function openUrlWithBrowser(url) { try { - const userAgent = navigator.userAgent; + const userAgent = window && window.navigator?.userAgent; //区分设备类型 if (/Android/i.test(userAgent)) { var intentUrl = diff --git a/utils/webviewBaseRequest.js b/utils/webviewBaseRequest.js index 629540c..e610b2c 100644 --- a/utils/webviewBaseRequest.js +++ b/utils/webviewBaseRequest.js @@ -1,3 +1,4 @@ +"use client"; import { getCookies } from "cookies-next"; export default function webviewBaseRequest() { @@ -5,7 +6,7 @@ export default function webviewBaseRequest() { const b_ts = new Date().getTime(); const baseRequest = { b_mid: parseInt(cookies.b_mid), - b_did: window && window.navigator?.userAgent.slice(0,65), + b_did: window && window.navigator?.userAgent.slice(0, 65), b_ver: cookies.b_ver, b_dt: parseInt(cookies.b_dt), b_model: cookies.b_model, -- 2.41.0 From 00f98fb9ade53999c72303c7b069605fef0586e5 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 09:54:48 +0800 Subject: [PATCH 03/17] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E6=92=AD=E6=94=BE=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/tools/handleFuns.js | 94 ++++++++++++++++++++++++--------------- 1 file changed, 58 insertions(+), 36 deletions(-) diff --git a/utils/tools/handleFuns.js b/utils/tools/handleFuns.js index 16d7f86..36cf281 100644 --- a/utils/tools/handleFuns.js +++ b/utils/tools/handleFuns.js @@ -51,14 +51,21 @@ import VideoPlayer from "@/components/VideoPlayer"; export const handleShowVideo = (video) => { document.body.style.overflow = "hidden"; const scrollY = window.scrollY; + const clientHeight = + document.documentElement.clientHeight || window.innerHeight; + const toolHeight = window.screen.height - clientHeight; Dialog.className = "videoMask"; Dialog.show({ title: "", bodyClassName: "!p-0", content: ( -
+
{ if (scrollY !== 0) { window.scrollTo(0, scrollY); @@ -68,27 +75,36 @@ export const handleShowVideo = (video) => { >
- {/* */} - {/*
{/*
{ // IE/Edge video.msRequestFullscreen(); } - // console.log("toggleFullScreen", video); + console.log("toggleFullScreen", video); if (!video || !controller) return; // video.style.transform = // "translateX(50vw) translateY(-24.4vh) rotate(90deg) !important"; @@ -260,7 +282,7 @@ export const toggleFullScreen = (videoEleId, controllerId, getState) => { getState((old) => !old); } else { - // console.log("toggleFullScreen", video); + console.log("toggleFullScreen", video); if (!video || !controller) return; // video.style.transform = // "translateX(50vw) translateY(-24.4vh) rotate(90deg) !important"; -- 2.41.0 From 49d0da3f8dec178823a217f363aef02083eacc12 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 11:17:49 +0800 Subject: [PATCH 04/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E9=80=9A=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预留位置 */} +
+ +
); } -- 2.41.0 From 0de1e7a18536ab59666b469ee966ebccdfe8642b Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 12:13:39 +0800 Subject: [PATCH 05/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/tools/handleFuns.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/tools/handleFuns.js b/utils/tools/handleFuns.js index 36cf281..9031534 100644 --- a/utils/tools/handleFuns.js +++ b/utils/tools/handleFuns.js @@ -122,14 +122,14 @@ export const handleShowVideo = (video) => {
{ if (scrollY !== 0) { -- 2.41.0 From a98db1bf1814280d38f205675e91a837bcd94897 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 16:11:34 +0800 Subject: [PATCH 06/17] =?UTF-8?q?=E6=89=93=E5=BC=80=E6=BB=9A=E5=8A=A8?= =?UTF-8?q?=E9=80=9A=E7=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/MessageList/index.jsx | 4 +- .../setting/spacePaymentSetting/page.jsx | 629 +++++++++--------- 2 files changed, 327 insertions(+), 306 deletions(-) diff --git a/app/noticeDetail/components/MessageList/index.jsx b/app/noticeDetail/components/MessageList/index.jsx index c83eb11..b318fc6 100644 --- a/app/noticeDetail/components/MessageList/index.jsx +++ b/app/noticeDetail/components/MessageList/index.jsx @@ -5,7 +5,7 @@ import React, { useImperativeHandle, } from "react"; import { formatDate } from "../../../../utils/tools"; -// import ScrollNotice from "../ScrollNotice"; +import ScrollNotice from "../ScrollNotice"; import { useRouter } from "next/navigation"; import requireAPI from "@/utils/requireAPI"; import { connect } from "react-redux"; @@ -217,7 +217,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { return (
{/* 广告轮播 */} - {/* {!!scollNotice.length && } */} + {!!scollNotice.length && } {/* 官方消息 */}
diff --git a/app/space/setting/spacePaymentSetting/page.jsx b/app/space/setting/spacePaymentSetting/page.jsx index 89d1bbd..a72f6d2 100644 --- a/app/space/setting/spacePaymentSetting/page.jsx +++ b/app/space/setting/spacePaymentSetting/page.jsx @@ -1,7 +1,7 @@ "use client"; import React, { useState, useEffect, useRef, useMemo, Fragment } from "react"; -import { Switch, Space, Checkbox, Button, Toast, Radio } from "antd-mobile"; +import { Switch, Space, Checkbox, Button, Toast, Form } from "antd-mobile"; import { useRouter, useSearchParams } from "next/navigation"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft } from "@fortawesome/free-solid-svg-icons"; @@ -10,11 +10,11 @@ import requireAPI from "@/utils/requireAPI"; import { get } from "@/utils/storeInfo"; import { getStreamerInfo } from "@/api/space"; const superSingles = [ - { key: 0, text: "永久" }, - { key: 1, text: "按月生效" }, - { key: 2, text: "按季度生效" }, - { key: 3, text: "按半年生效" }, - { key: 4, text: "按年生效" }, + { key: 0, index: 0, text: "永久" }, + { key: 4, index: 1, text: "按年生效" }, + { key: 3, index: 2, text: "按半年生效" }, + { key: 2, index: 3, text: "按季度生效" }, + { key: 1, index: 4, text: "按月生效" }, ]; // const superSingles = [ // { key: 0, text: "永久" }, @@ -25,62 +25,61 @@ const superSingles = [ // ]; const ListItemWithCheckbox = ({ superSingle, - formData, - setFormData, + superSinglesContr, + setSuperSinglesContr, superSingleCheckeds, + index, }) => { return (
  • {}}>
    e.stopPropagation()}> - { const newFormData = { ...formData }; newFormData.superSingle.forEach((el) => { el.enable = 0; }); - newFormData.superSingle[superSingle.key].enable = value; - // newFormData.superSingle[superSingle.key].price = 0; - // newFormData.superSingle[superSingle.key].wechatFree = false; + newFormData.superSingle[index].enable = value; + // newFormData.superSingle[index].price = 0; + // newFormData.superSingle[index].wechatFree = false; setFormData(newFormData); }} > {superSingle.text} - - {/* */} + { - const newFormData = { ...formData }; - newFormData.superSingle[superSingle.key].enable = value; - newFormData.superSingle[superSingle.key].price = 0; - newFormData.superSingle[superSingle.key].wechatFree = false; - setFormData(newFormData); + const newSuperSinglesContr = [...superSinglesContr]; + newSuperSinglesContr[index].enable = value; + // newSuperSinglesContr[index].price = 0; + // newSuperSinglesContr[index].wechatFree = false; + setSuperSinglesContr(newSuperSinglesContr); }} > {superSingle.text} - */} +
    ¥ { - const newFormData = { ...formData }; - newFormData.superSingle[superSingle.key].price = value; - setFormData(newFormData); + const newSuperSinglesContr = [...superSinglesContr]; + newSuperSinglesContr[index].price = value; + setSuperSinglesContr(newSuperSinglesContr); }} />
    @@ -88,126 +87,107 @@ const ListItemWithCheckbox = ({ | { - const newFormData = { ...formData }; - newFormData.superSingle[superSingle.key].wechatFree = value; - setFormData(newFormData); + const newSuperSinglesContr = [...superSinglesContr]; + newSuperSinglesContr[index].wechatFree = value; + setSuperSinglesContr(newSuperSinglesContr); }} >

    赠送微信

    - {/* { - const newFormData = { ...formData }; - newFormData.superSingle[superSingle.key].wechatFree = value; - setFormData(newFormData); - }} - > -

    赠送微信

    -
    */}
  • ); }; -export default function spacePaymentSetting() { + +export default function SpacePaymentSetting() { + const [form] = Form.useForm(); const router = useRouter(); const searchParams = useSearchParams(); - const [formData, setFormData] = useState({ - spacePrice: "", - ironFanPrice: "", - openSuper: true, - superSingle: [ - { enable: false, price: 0, wechatFree: false }, - { enable: false, price: 0, wechatFree: false }, - { enable: false, price: 0, wechatFree: false }, - { enable: false, price: 0, wechatFree: false }, - { enable: false, price: 0, wechatFree: false }, - ], - }); + const [openSuper, setOpenSuper] = useState(false); const [spacePriceAble, setSpacePriceAble] = useState(false); const [tiefenPriceAble, setTiefenPriceAble] = useState(false); const [isSubmitting, setIsSubmitting] = useState(false); - // const [superSingleCheckeds, setSuperSingleCheckeds] = useState([]); - const [superSingleChecked, setSuperSingleChecked] = useState(null); + const [superSingleCheckeds, setSuperSingleCheckeds] = useState([]); + + const [superSinglesContr, setSuperSinglesContr] = useState([ + { enable: false, price: 0, wechatFree: false, key: 0 }, + { enable: false, price: 0, wechatFree: false, key: 4 }, + { enable: false, price: 0, wechatFree: false, key: 3 }, + { enable: false, price: 0, wechatFree: false, key: 2 }, + { enable: false, price: 0, wechatFree: false, key: 1 }, + ]); + const [spacePriceInfo, setSpacePriceInfo] = useState(null); useEffect(() => { const account = get("account"); getStreamerInfo(Number(account.mid)).then((res) => { - // 旧版本 - const haveChecked = res.is_superfanship_enabled; - if (haveChecked) { - setSuperSingleChecked(res.superfanship_valid_period); - } - const newFormData = { - spacePrice: `${res.admission_price / 100}`, - ironFanPrice: res.ironfanship_price / 100, - openSuper: !!res.is_superfanship_enabled, - superSingle: formData.superSingle.map((it, index) => { - if (index == res.superfanship_valid_period) { - return { - enable: !!res.is_superfanship_enabled, - price: res.superfanship_price / 100, - wechatFree: !!res.is_superfanship_give_wechat, - }; - } else { - return it; - } - }), - spaceIntro: res.profile, - }; - setFormData(newFormData); // 新版本 - // const haveChecked = res.superfan_price_list - // .map((it, index) => ({ ...it, index })) - // .filter((it) => it.enable); + const priceList = res.superfan_price_list ?? [ + { enable: false, price: 0, is_superfanship_give_wechat: false, key: 0 }, + { enable: false, price: 0, is_superfanship_give_wechat: false, key: 4 }, + { enable: false, price: 0, is_superfanship_give_wechat: false, key: 3 }, + { enable: false, price: 0, is_superfanship_give_wechat: false, key: 2 }, + { enable: false, price: 0, is_superfanship_give_wechat: false, key: 1 }, + ]; + const haveChecked = priceList + .map((it, index) => ({ ...it, index })) + .filter((it) => it.enable); // if (haveChecked.length > 0) { // setSuperSingleChecked(haveChecked[0].period); // } - // setSuperSingleCheckeds( - // res.superfan_price_list - // .map((it, index) => ({ ...it, index })) - // .filter((it) => it.enable) - // .map((it) => superSingles[it.index].key) - // ); - // setFormData({ - // spacePrice: res.admission_price / 100, - // ironFanPrice: res.ironfanship_price / 100, - // openSuper: !!res.is_superfanship_enabled, - // superSingle: res.superfan_price_list.map((it) => ({ - // enable: !!it.enable, - // price: it.price / 100, - // wechatFree: !!it.is_superfanship_give_wechat, - // })), - // spaceIntro: res.profile, - // }); + setSuperSingleCheckeds( + priceList + .map((it, index) => ({ ...it, index })) + .filter((it) => it.enable) + .map((it) => superSingles[it.index].index) + ); + setOpenSuper(!!res.is_superfanship_enabled); + setSuperSinglesContr( + priceList.map((it, index) => ({ + enable: !!it.enable, + price: it.price / 100, + wechatFree: !!it.is_superfanship_give_wechat, + key: index ? 5 - index : index, + })) + ); + setSpacePriceInfo(res); }); }, []); + + useEffect(() => { + if (!spacePriceInfo) return; + form.setFieldsValue({ + spacePrice: spacePriceInfo.admission_price / 100, + ironFanPrice: spacePriceInfo.ironfanship_price / 100, + }); + }, [form, spacePriceInfo]); const listItemWithCheckboxMemo = useMemo(() => { return superSingles.map((item, index) => ( )); - }, [formData, superSingleChecked]); - const handleSubmit = async () => { - const { spacePrice, ironFanPrice, openSuper, superSingle } = formData; + }, [superSingleCheckeds, superSinglesContr]); + const handleSubmit = async (newFormData) => { + const { spacePrice, ironFanPrice } = newFormData; + const superSingle = [...superSinglesContr]; const openSuperEveryFalse = Object.values(superSingle).every( (it) => !it.enable ); - if (!spacePrice || !ironFanPrice || (openSuper && openSuperEveryFalse)) { + if (openSuper && openSuperEveryFalse) { Toast.show({ icon: "fail", - content: "请完善内容后提交", + content: "请完善档位内容后提交", position: "top", }); return; @@ -233,57 +213,9 @@ export default function spacePaymentSetting() { } let isPrice = false; if (openSuper) { - // Object.values(superSingle).forEach((it) => { - // if (it.enable) { - // const superFanPrice = it.price; - // if (!superFanPrice) { - // Toast.show({ - // icon: "fail", - // content: "请填写超粉价格", - // position: "top", - // }); - // isPrice = true; - // return; - // } else { - // const _superFanPrice = parseInt(superFanPrice * 100, 10); - // if ( - // openSuper && - // (isNaN(_superFanPrice) || - // _superFanPrice < 100 || - // _superFanPrice > 388800) - // ) { - // isPrice = true; - // Toast.show({ - // icon: "fail", - // content: "请输入有效的超粉价格", - // position: "top", - // }); - // return; - // } - // if (openSuper && _superFanPrice <= _ironFanPrice) { - // isPrice = true; - // Toast.show({ - // icon: "fail", - // content: "请输入大于铁粉价格的超粉价格", - // position: "top", - // }); - // return; - // } - // } - // } - // }); - if (superSingleChecked == null) { - Toast.show({ - icon: "fail", - content: "请选择铁粉类型", - position: "top", - }); - } else { - const superChecked = superSingle.filter( - (_, index) => index == superSingleChecked - )[0]; - if (superChecked) { - const superFanPrice = superChecked.price; + Object.values(superSingle).forEach((it) => { + if (it.enable) { + const superFanPrice = it.price; if (!superFanPrice) { Toast.show({ icon: "fail", @@ -319,7 +251,55 @@ export default function spacePaymentSetting() { } } } - } + }); + // if (superSingleChecked == null) { + // Toast.show({ + // icon: "fail", + // content: "请选择铁粉类型", + // position: "top", + // }); + // } else { + // const superChecked = superSingle.filter( + // (_, index) => index == superSingleChecked + // )[0]; + // if (superChecked) { + // const superFanPrice = superChecked.price; + // if (!superFanPrice) { + // Toast.show({ + // icon: "fail", + // content: "请填写超粉价格", + // position: "top", + // }); + // isPrice = true; + // return; + // } else { + // const _superFanPrice = parseInt(superFanPrice * 100, 10); + // if ( + // openSuper && + // (isNaN(_superFanPrice) || + // _superFanPrice < 100 || + // _superFanPrice > 388800) + // ) { + // isPrice = true; + // Toast.show({ + // icon: "fail", + // content: "请输入有效的超粉价格", + // position: "top", + // }); + // return; + // } + // if (openSuper && _superFanPrice <= _ironFanPrice) { + // isPrice = true; + // Toast.show({ + // icon: "fail", + // content: "请输入大于铁粉价格的超粉价格", + // position: "top", + // }); + // return; + // } + // } + // } + // } } if (isPrice) return; // if ( @@ -340,20 +320,21 @@ export default function spacePaymentSetting() { if (isSubmitting) return; // 旧版本 - const superfanList = superSingle.map((it, index) => ({ - period: index, - enable: it.enable ? 1 : 0, - price: parseInt(it.price * 100, 10), - is_superfanship_give_wechat: it.wechatFree ? 1 : 0, - })); - const superfanObj = superfanList.filter((it) => it.enable)[0]; - // 新版本 - // const superfan_price_list = superSingle.map((it, index) => ({ + // const superfanList = superSingle.map((it, index) => ({ // period: index, // enable: it.enable ? 1 : 0, // price: parseInt(it.price * 100, 10), // is_superfanship_give_wechat: it.wechatFree ? 1 : 0, // })); + // const superfanObj = superfanList.filter((it) => it.enable)[0]; + // 新版本 + + const superfan_price_list = superSinglesContr.map((it, index) => ({ + period: it.key, + enable: it.enable ? 1 : 0, + price: parseInt(it.price * 100, 10), + is_superfanship_give_wechat: it.wechatFree ? 1 : 0, + })); setIsSubmitting(true); try { const body = { @@ -362,13 +343,12 @@ export default function spacePaymentSetting() { ironfanship_price: parseInt(ironFanPrice * 100, 10), is_superfanship_enabled: openSuper ? 1 : 0, // 旧版本 - superfanship_price: superfanObj.price, - superfanship_valid_period: superfanObj.period, - is_superfanship_give_wechat: superfanObj.is_superfanship_give_wechat, + // superfanship_price: superfanObj.price, + // superfanship_valid_period: superfanObj.period, + // is_superfanship_give_wechat: superfanObj.is_superfanship_give_wechat, // 新版本 - // superfan_price_list, + superfan_price_list, }; - // console.log("body", body); const _data = await requireAPI( "POST", "/api/zone/update", @@ -397,6 +377,7 @@ export default function spacePaymentSetting() { setIsSubmitting(false); } }; + const messageEle = (message) =>

    {message}

    ; return (
    {/* 头部标题 */} @@ -415,10 +396,35 @@ export default function spacePaymentSetting() {
    {/* 内容 */}
    -
    +
    { + Toast.show({ + icon: "fail", + content: "请检查所填内容", + position: "top", + }); + }} + onFinish={handleSubmit} + onValuesChange={(values) => { + console.log("onValuesChange:", values); + // setFormData(values); + }} + // hasFeedback={false} + validateMessages={{ + required: (name) => { + return

    {`请输入${name}`}

    ; + }, + }} + >

    - 解锁空间价格 + 解锁空间价格 *

    @@ -428,28 +434,31 @@ export default function spacePaymentSetting() {

    ¥ - {/* {!spacePriceAble ? ( - {formData.spacePrice} - ) : ( + { + // if (value.length === 0) { + // return Promise.reject(messageEle("请选择性别")); + // } + // }, + }, + ]} + > - setFormData((old) => ({ ...old, spacePrice: value })) - } + placeholder="0~3888,仅支持整数" + inputClassName="placeholder:text-[14px]" /> - )} */} - - setFormData((old) => ({ ...old, spacePrice: value })) - } - className={!formData.spacePrice ? "pb-1.5" : ""} - inputClassName="placeholder:text-[14px]" - /> +
    -
    -
    -
    -

    - 铁粉价格 - * -

    -

    - (累计消费达成后解锁铁粉权益) -

    -
    -
    -
    - ¥ - {/* {!tiefenPriceAble ? ( - {formData.ironFanPrice} - ) : ( - - )} */} - - setFormData((old) => ({ ...old, ironFanPrice: value })) - } - className={!formData.ironFanPrice ? "pb-1.5" : ""} - inputClassName="placeholder:text-[14px]" - /> + +

    + 铁粉价格 + * +

    +

    + (累计消费达成后解锁铁粉权益) +

    +
    + } + layout="vertical" + rules={[ + { + required: true, + message: messageEle("请填写铁粉价格"), + // validator: (rule, value) => { + // if (value.length === 0) { + // return Promise.reject(messageEle("请选择性别")); + // } + // }, + }, + ]} + > +
    +
    + ¥ + + + +
    +
    - -
    -
    -
    +

    - 超粉功能 - * + 超粉功能

    是否启用

    - { - setFormData((old) => ({ - ...old, - openSuper: value, - })); - }} - style={{ - "--checked-color": "#FF669E", - "--height": "24px", - "--width": "36px", - }} - /> + + setOpenSuper((old) => !old)} + style={{ + "--checked-color": "#FF669E", + "--height": "24px", + "--width": "36px", + }} + /> +
    -
    - {formData.openSuper && ( -
    -
    -

    - 超粉单次开通类型 - * -

    -

    - (付费后解锁对应期限超粉权益) -

    -
    - - { - setSuperSingleChecked(values); - // setSuperSingleCheckeds(values); - }} - > -
      {listItemWithCheckboxMemo}
    -
    - {/* { - setSuperSingleCheckeds(values); - }} - > -
      {listItemWithCheckboxMemo}
    -
    */} -
    -
    - )} - -
    -
    + } + layout="vertical" + > + + {/* { + setSuperSingleChecked(values); + // setSuperSingleCheckeds(values); }} - onClick={handleSubmit} > - {isSubmitting ? "正在保存..." : "保存设置"} - -
    +
      {listItemWithCheckboxMemo}
    + */} + { + setSuperSingleCheckeds(values); + }} + > +
      {listItemWithCheckboxMemo}
    +
    + + + )} + + + + +
    ); -- 2.41.0 From cf14a0dc2e1767d73b189b7c50cdfcbbdf5ab0e6 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 16 Jan 2025 20:24:19 +0800 Subject: [PATCH 07/17] =?UTF-8?q?=E6=B7=BB=E5=8A=A0webView=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/login/page.js | 16 ++++++++++---- app/my/page.js | 10 +++++++-- app/my/setting/aboutUs/page.js | 8 +++++-- .../joinStreamer/page.jsx | 4 +++- app/my/wallet/page.js | 4 +++- .../components/MessageList/index.jsx | 2 +- .../components/NoticeItem/index.jsx | 20 +++++++++++++++-- .../components/ScrollNotice/index.js | 22 +++++++++++++++++-- app/search/conponents/Banner/index.jsx | 2 +- app/search/page.js | 8 +++++-- app/space/[id]/page.js | 20 ++++++++--------- .../person_space_introduce/[mid]/page.js | 10 ++++----- app/webView/[src]/page.js | 4 ++-- components/CheckVip/index.jsx | 4 +++- components/ImagesMask/index.jsx | 13 ++++++----- components/PaySpacePost/index.js | 11 +++++----- components/Photos/index.js | 11 +++++----- components/StreamerNavigator/index.js | 1 - components/VideoPlayer/index.jsx | 1 - utils/tools/handleFuns.js | 2 -- 20 files changed, 115 insertions(+), 58 deletions(-) diff --git a/app/login/page.js b/app/login/page.js index 2c583be..276ce71 100644 --- a/app/login/page.js +++ b/app/login/page.js @@ -247,7 +247,9 @@ function Login({ handleLogin }) { className="text-[#FF669E]" onClick={() => { setIframePageUrl( - `/webView/${encodeURIComponent("/doc/useragreement")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/useragreement` + )}` ); }} > @@ -258,7 +260,9 @@ function Login({ handleLogin }) { className="text-[#FF669E]" onClick={() => { setIframePageUrl( - `/webView/${encodeURIComponent("/doc/privatypolicy")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/privatypolicy` + )}` ); }} > @@ -598,7 +602,9 @@ const LoginBtn = ({ { setIframePageUrl( - `/webView/${encodeURIComponent("/doc/useragreement")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/useragreement` + )}` ); }} className="text-[#FF669E] text-xs" @@ -609,7 +615,9 @@ const LoginBtn = ({ { setIframePageUrl( - `/webView/${encodeURIComponent("/doc/privatypolicy")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/privatypolicy` + )}` ); }} className="text-[#FF669E] text-xs" diff --git a/app/my/page.js b/app/my/page.js index 7fb248e..884e0e9 100644 --- a/app/my/page.js +++ b/app/my/page.js @@ -235,7 +235,11 @@ const My = () => { subTitle != "完善资料后解锁" && !disable && router.push( - toWebView ? `/webView/${encodeURIComponent(url)}` : url + toWebView + ? `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/${url}` + )}` + : url ); }} > @@ -422,7 +426,9 @@ const My = () => { const base = baseRequest(); router.push( `/webView/${encodeURIComponent( - `/vip?base=${encodeURIComponent(JSON.stringify(base))}` + `${ + process.env.NEXT_PUBLIC_WEB_URL + }/${`/vip?base=${encodeURIComponent(JSON.stringify(base))}`}` )}` ); }} diff --git a/app/my/setting/aboutUs/page.js b/app/my/setting/aboutUs/page.js index 74d005b..6f039d6 100644 --- a/app/my/setting/aboutUs/page.js +++ b/app/my/setting/aboutUs/page.js @@ -41,7 +41,9 @@ export default function AboutUs() { className="flex justify-between items-center p-3" onClick={() => router.push( - `/webView/${encodeURIComponent("/doc/useragreement")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/useragreement` + )}` ) } > @@ -64,7 +66,9 @@ export default function AboutUs() { className="flex justify-between items-center p-3" onClick={() => router.push( - `/webView/${encodeURIComponent("/doc/privatypolicy")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/privatypolicy` + )}` ) } > diff --git a/app/my/streamerVerification/joinStreamer/page.jsx b/app/my/streamerVerification/joinStreamer/page.jsx index d36cdcf..4c884c4 100644 --- a/app/my/streamerVerification/joinStreamer/page.jsx +++ b/app/my/streamerVerification/joinStreamer/page.jsx @@ -102,7 +102,9 @@ export default function JoinStreamer() { className="text-base text-center leading-9 text-[#FF669E]" onClick={() => { router.push( - `/webView/${encodeURIComponent("/doc/platformguidelines")}` + `/webView/${encodeURIComponent( + `${process.env.NEXT_PUBLIC_WEB_URL}/doc/platformguidelines` + )}` ); }} > diff --git a/app/my/wallet/page.js b/app/my/wallet/page.js index 8a68da3..df058ba 100644 --- a/app/my/wallet/page.js +++ b/app/my/wallet/page.js @@ -100,7 +100,9 @@ export default function Wallet() { // console.log("base,base", base); router.push( `/webView/${encodeURIComponent( - `/pay?base=${encodeURIComponent(JSON.stringify(base))}` + `${ + process.env.NEXT_PUBLIC_WEB_URL + }/pay?base=${encodeURIComponent(JSON.stringify(base))}` )}` ); } diff --git a/app/noticeDetail/components/MessageList/index.jsx b/app/noticeDetail/components/MessageList/index.jsx index b318fc6..979f5ac 100644 --- a/app/noticeDetail/components/MessageList/index.jsx +++ b/app/noticeDetail/components/MessageList/index.jsx @@ -217,7 +217,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { return (
    {/* 广告轮播 */} - {!!scollNotice.length && } + {!!scollNotice.content && } {/* 官方消息 */}
    diff --git a/app/noticeDetail/components/NoticeItem/index.jsx b/app/noticeDetail/components/NoticeItem/index.jsx index 0e2b7bd..2f72ebc 100644 --- a/app/noticeDetail/components/NoticeItem/index.jsx +++ b/app/noticeDetail/components/NoticeItem/index.jsx @@ -4,8 +4,12 @@ import { Toast } from "antd-mobile"; import { useRouter } from "next/navigation"; import OwnImage from "@/components/OwnImage"; import OwnIcon from "@/components/OwnIcon"; +import baseRequest from "@/utils/baseRequest"; + export default function NoticeItem({ leftIcon, hasLink, data }) { const router = useRouter(); + const base = baseRequest(); + return (
    @@ -57,8 +61,20 @@ export default function NoticeItem({ leftIcon, hasLink, data }) { links[1]?.action === "app_router_path"; router.push(links[1]?.params); } else { - links[0]?.action === "outward"; - router.push(links[0]?.params); + if (links[0]?.action === "outward") { + router(links[0]?.params); + } else { + // alert(links[0]?.params); + // alert(encodeURIComponent(links[0]?.params)); + router.push( + `/webView/${encodeURIComponent( + links[0]?.params + + `?base=${encodeURIComponent( + JSON.stringify(base) + )}` + )}` + ); + } } } }} diff --git a/app/noticeDetail/components/ScrollNotice/index.js b/app/noticeDetail/components/ScrollNotice/index.js index 4359668..69fdcc6 100644 --- a/app/noticeDetail/components/ScrollNotice/index.js +++ b/app/noticeDetail/components/ScrollNotice/index.js @@ -3,7 +3,10 @@ import React from "react"; import { NoticeBar } from "antd-mobile"; import OwnIcon from "@/components/OwnIcon"; -export default function ScrollNotice({ content }) { +import { useRouter } from "next/navigation"; +/************* ✨ Codeium Command ⭐ *************/ +export default function ScrollNotice({ data }) { + const router = useRouter(); // const [fadeAnim] = useState(new Animated.Value(300)); // 透明度初始值为0 // let animation = Animated.timing(fadeAnim, { // toValue: -(length * 60), @@ -45,7 +48,22 @@ export default function ScrollNotice({ content }) { /> } bordered={false} - content={content} + 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} +
    + } style={{ "--background-color": "transparent", "--height": "max-content", diff --git a/app/search/conponents/Banner/index.jsx b/app/search/conponents/Banner/index.jsx index ae99e9d..4e97e71 100644 --- a/app/search/conponents/Banner/index.jsx +++ b/app/search/conponents/Banner/index.jsx @@ -41,7 +41,7 @@ export default function Banner() { (item, index) => (
    { const links = item?.hyperlinks; if (links.length > 1) { diff --git a/app/search/page.js b/app/search/page.js index 3d8c2d8..404d2c9 100644 --- a/app/search/page.js +++ b/app/search/page.js @@ -800,7 +800,9 @@ export default function Search() { if (!isMember) { router.push( `/webView/${encodeURIComponent( - `/vip?base=${encodeURIComponent(JSON.stringify(base))}` + `${ + process.env.NEXT_PUBLIC_WEB_URL + }/vip?base=${encodeURIComponent(JSON.stringify(base))}` )}` ); return; @@ -1000,7 +1002,9 @@ export default function Search() { if (!isMember) { router.push( `/webView/${encodeURIComponent( - `/vip?base=${encodeURIComponent(JSON.stringify(base))}` + `${ + process.env.NEXT_PUBLIC_WEB_URL + }/vip?base=${encodeURIComponent(JSON.stringify(base))}` )}` ); return; diff --git a/app/space/[id]/page.js b/app/space/[id]/page.js index cf4141d..33ae28a 100644 --- a/app/space/[id]/page.js +++ b/app/space/[id]/page.js @@ -294,11 +294,11 @@ export default function PersonSpace() { : router.push( "/webView/" + encodeURIComponent( - "/zone/pay/" + - streamerInfo?.id + - "/h5_zone_superfanship/0" + - "?base=" + - encodeURIComponent(JSON.stringify(base)) + `${process.env.NEXT_PUBLIC_WEB_URL}/zone/pay/${ + streamerInfo?.id + }/h5_zone_superfanship/0?base=${encodeURIComponent( + JSON.stringify(base) + )}` ) ); }} @@ -461,11 +461,11 @@ export default function PersonSpace() { : router.push( "/webView/" + encodeURIComponent( - "/zone/pay/" + - streamerInfo?.id + - "/h5_zone_superfanship/0" + - "?base=" + - encodeURIComponent(JSON.stringify(base)) + `${process.env.NEXT_PUBLIC_WEB_URL}/zone/pay/${ + streamerInfo?.id + }/h5_zone_superfanship/0?base=${encodeURIComponent( + JSON.stringify(base) + )}` ) ); }} diff --git a/app/space/person_space_introduce/[mid]/page.js b/app/space/person_space_introduce/[mid]/page.js index a1bd75d..853f57c 100644 --- a/app/space/person_space_introduce/[mid]/page.js +++ b/app/space/person_space_introduce/[mid]/page.js @@ -256,11 +256,11 @@ export default function PersonSpaceIntroduce() { router.push( "/webView/" + encodeURIComponent( - "/zone/pay/" + - data?.id + - "/h5_zone_admission/0" + - "?base=" + - encodeURIComponent(JSON.stringify(base)) + `${process.env.NEXT_PUBLIC_WEB_URL}/zone/pay/${ + data?.id + }/h5_zone_admission/0?base=${encodeURIComponent( + JSON.stringify(base) + )}` ) ); } diff --git a/app/webView/[src]/page.js b/app/webView/[src]/page.js index 13f4457..4c695f2 100644 --- a/app/webView/[src]/page.js +++ b/app/webView/[src]/page.js @@ -4,7 +4,7 @@ import React from "react"; import { useRouter, useParams } from "next/navigation"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft } from "@fortawesome/free-solid-svg-icons"; -export default function PersonSpace() { +export default function WebView() { const { src } = useParams(); const router = useRouter(); return ( @@ -25,7 +25,7 @@ export default function PersonSpace() { {/* 内容 */}