修复问题2

This commit is contained in:
al 2024-07-15 20:17:35 +08:00
parent 56bee22165
commit dbdca5cb68
2 changed files with 34 additions and 26 deletions

View File

@ -77,7 +77,7 @@ export default function PersonSpace() {
if (res) {
const { isRefunding, noRole } = res;
isRefunding && router.push("/");
noRole && router.push("person_space_introduce/" + id);
noRole && router.replace("person_space_introduce/" + id);
}
});
}, []);

View File

@ -29,8 +29,8 @@ export default function PersonSpaceIntroduce() {
getStreamerInfo(Number(mid)).then((res) => {
setData(res);
if (res?.visitor_role!=4) {
router.push("/space/" + mid);
if (res?.visitor_role != 4) {
router.replace("/space/" + mid);
}
console.log("mid", mid, res);
});
@ -258,31 +258,39 @@ export default function PersonSpaceIntroduce() {
</div>
</div>
</Mask> */}
<div className="flex justify-center items-center px-4 py-4 fixed bottom-0 bg-deepBg w-full border-t-2 border-[#FFFFFF1A]">
<div className="bg-primary px-10 py-1 text-base rounded-full">
{/* <Image/> */}
<div
className="flex items-center py-2 text-base"
onClick={() => {
router.push("/pay");
}}
>
<Image
width={18}
height={18}
placeholder=""
className="mr-2"
src="/icons/money_pink.png"
/>
<span>39.9元立即加入</span>
<FontAwesomeIcon
icon={faAngleRight}
size="xl"
className="h-4 ml-2"
/>
{data?.refund_status !== 1 && data?.refund_status !== 2 && (
<div className="flex justify-center items-center px-4 py-4 fixed bottom-0 bg-deepBg w-full border-t-2 border-[#FFFFFF1A]">
<div className="bg-primary px-10 py-1 text-base rounded-full">
{/* <Image/> */}
<div
className="flex items-center py-2 text-base"
onClick={() => {
router.push("/pay");
}}
>
{data?.admission_price !== 0 && (
<Image
width={18}
height={18}
placeholder=""
className="mr-2"
src="/icons/money_pink.png"
/>
)}
<span>
{data?.admission_price === 0
? "免费加入"
: `${data?.admission_price / 100}元立即加入`}
</span>
<FontAwesomeIcon
icon={faAngleRight}
size="xl"
className="h-4 ml-2"
/>
</div>
</div>
</div>
</div>
)}
</div>
</div>
);