Files
ipad/src/components/modals/VipAuthModal.tsx
2025-12-16 10:12:28 +08:00

39 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
interface VipAuthModalProps {
onClose: () => void;
}
export const VipAuthModal = ({ onClose }: VipAuthModalProps) => {
return (
<div className='fixed inset-0 z-40 flex items-center justify-center bg-black/30'>
<div className='w-[560px] max-w-[95vw] bg-white rounded-3xl shadow-xl overflow-hidden text-sm'>
<div className='px-4 py-3 border-b flex items-center justify-between'>
<div className='font-semibold'> VIP </div>
<button className='text-xs text-gray-500' onClick={onClose}>
</button>
</div>
<div className='px-4 py-4 bg-gray-50/60'>
<div className='flex gap-4 items-center'>
<div className='flex-1 text-xs text-gray-700 space-y-2'>
<p> VIP </p>
<ul className='list-disc ml-5 space-y-1'>
<li> APP </li>
<li> VIP </li>
<li></li>
</ul>
</div>
<div className='w-40 h-40 rounded-3xl bg-white border flex items-center justify-center text-xs text-gray-500'>
<img
src='https://datacenter-open.oss-cn-hangzhou.aliyuncs.com/his/taiping-vip.jpg'
alt='太平 VIP 认证二维码'
className='w-full h-full object-cover'
/>
</div>
</div>
</div>
</div>
</div>
);
};