"use client"; import Image from "next/image"; import { Dialog, DialogClose, DialogContent, DialogTitle, DialogTrigger } from "@/components/ui/dialog"; type ZoomableImageProps = { src: string; alt: string; width: number; height: number; className?: string; }; /** 点击图片放大预览,再点任意区域关闭 */ export const ZoomableImage = ({ src, alt, width, height, className }: ZoomableImageProps) => { const imageSrc = src || "/placeholder.svg"; const previewLabel = alt || "图片预览"; return ( {alt} {previewLabel} {/* 点击预览图本身也会关闭 */} {alt} ); };