main #19

Merged
yezian merged 2 commits from main into space_domain 2024-12-26 21:04:49 +08:00
1 changed files with 4 additions and 1 deletions
components/CheckVip

View File

@ -5,12 +5,15 @@ import { Dialog, Toast } from "antd-mobile";
import { checkRole } from "@/utils/auth";
// import { useRouter } from "next/navigation";
import baseRequest from "@/utils/baseRequest";
import { get } from "@/utils/storeInfo";
export default function CheckVip({ children, isVipToPassFun, router }) {
// const router = useRouter();
const base = baseRequest();
useEffect(() => {}, []);
const handleCheck = () => {
const isVip = checkRole();
const account = get("account");
const isVip = account?.is_a_member;
if (!isVip) {
const showMobal = Dialog.show({
title: "是否开通会员",