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, index) => ( 0 ? 10 : 0 }} width={100} height={100} alt="" /> )) } ); }; export default PreviewImg;