"use client"; export default function SettingModal({ visible, onClose, }: { visible: boolean; onClose: () => void; }) { // 如果不显示,直接 return null if (!visible) return null; return ( // 全屏遮罩