2024-12-25 21:18:17 +08:00
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import React, { useState, useEffect } from "react";
|
|
|
|
|
import { Dialog, Toast } from "antd-mobile";
|
|
|
|
|
import { checkRole } from "@/utils/auth";
|
|
|
|
|
// import { useRouter } from "next/navigation";
|
|
|
|
|
import baseRequest from "@/utils/baseRequest";
|
2024-12-26 21:03:58 +08:00
|
|
|
|
import { get } from "@/utils/storeInfo";
|
|
|
|
|
|
2024-12-25 21:18:17 +08:00
|
|
|
|
export default function CheckVip({ children, isVipToPassFun, router }) {
|
|
|
|
|
// const router = useRouter();
|
|
|
|
|
const base = baseRequest();
|
|
|
|
|
useEffect(() => {}, []);
|
|
|
|
|
const handleCheck = () => {
|
2024-12-26 21:03:58 +08:00
|
|
|
|
const account = get("account");
|
|
|
|
|
const isVip = account?.is_a_member;
|
2024-12-25 21:18:17 +08:00
|
|
|
|
if (!isVip) {
|
|
|
|
|
const showMobal = Dialog.show({
|
|
|
|
|
title: "是否开通会员",
|
|
|
|
|
content: (
|
|
|
|
|
<div>
|
|
|
|
|
<div>会员可无限制保存图片,查看原图,一次开通永久有效。</div>
|
|
|
|
|
</div>
|
|
|
|
|
),
|
|
|
|
|
bodyStyle: {
|
|
|
|
|
maxHeight: "none",
|
|
|
|
|
width: "80vw",
|
|
|
|
|
position: "fixed",
|
|
|
|
|
top: "200px",
|
|
|
|
|
left: "10vw",
|
|
|
|
|
"--text-color": "#fff",
|
|
|
|
|
color: "#fff",
|
|
|
|
|
},
|
|
|
|
|
// cancelText:"确认",
|
|
|
|
|
// confirmText:"取消",
|
|
|
|
|
style: {
|
|
|
|
|
"--text-color": "#fff",
|
|
|
|
|
},
|
|
|
|
|
closeOnAction: true,
|
|
|
|
|
actions: [
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
key: "close",
|
|
|
|
|
text: "取消",
|
|
|
|
|
bold: true,
|
|
|
|
|
style: { color: "#ffffff80" },
|
|
|
|
|
onClick: () => {
|
|
|
|
|
showMobal?.close();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: "submit",
|
|
|
|
|
text: "确认",
|
|
|
|
|
style: { color: "#fff" },
|
|
|
|
|
onClick: () => {
|
|
|
|
|
showMobal.close();
|
|
|
|
|
console.log("showMobal", showMobal);
|
|
|
|
|
router.push(
|
|
|
|
|
`/webView/${encodeURIComponent(
|
|
|
|
|
`/vip?base=${encodeURIComponent(JSON.stringify(base))}`
|
|
|
|
|
)}`
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
isVipToPassFun();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return <div onClick={handleCheck}>{children}</div>;
|
|
|
|
|
}
|