"use client"; import React, { useEffect, useState } from "react"; import { Mask } from "antd-mobile"; import Link from "next/link"; export default function IosInstallStepModal({ isVisible, setIsVisible }) { const [stepIndex, setStepIndex] = useState(1); useEffect(() => { if (!isVisible) { setStepIndex(1); return; } const timeoutId = setTimeout( () => setStepIndex((prev) => { if (prev === 6) return 1; return prev + 1; }), 3000 ); return () => { clearTimeout(timeoutId); }; }, [isVisible, stepIndex]); return ( setIsVisible(false)} opacity="thick" >
setIsVisible(!isVisible)} className="absolute right-4 top-4" viewBox="0 0 1024 1024" width="20" height="20" >

安装前请先删除旧版APP

请等待安装完成,然后开始设置

请务必按以下步骤进行设置,详细 安装教程

{stepIndex === 1 && (

第1步:打开【设置】

)} {stepIndex === 2 && (

第2步:点击【通用】

)} {stepIndex === 3 && (

第3步:点击【VPN与设备管理】

)} {stepIndex === 4 && (

第4步:点击【证书】

)} {stepIndex === 5 && (

第5步:点击【信任证书】

)} {stepIndex === 6 && (

第6步:在弹出页点击【信任】

)}
); }