import React from 'react'; import './AlertModal.css'; const ICON = { success: '✓', error: '✕', warning: '!', info: 'i' }; export default function AlertModal({ visible = false, type = 'info', title = '提示', content = '', okText = '知道了', onOk }) { if (!visible) return null; return (
{ if (e.target === e.currentTarget) onOk && onOk(); }}>
{ICON[type] || 'i'}
{title}
{content}
); }