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) => ( )) } ); }; export default PreviewImg;