import { Image } from "antd"; import { getFileUrl } from "../../utils/index"; /** * 在查看页面中图片预览组件 */ const PreviewImg = (props) => { const { files = [], fileUrlKey = "filePath" } = props; const fileUrl = getFileUrl(); return ( { files.filter(Boolean).map(item => ( )) } ); }; PreviewImg.displayName = "PreviewImg"; export default PreviewImg;