import { Tag, Tooltip } from "antd";
import PreviewImg from "../PreviewImg";
/**
* 在表格组件中图片查看组件
*/
const TooltipPreviewImg = (props) => {
const { files = [], fileUrlKey = "filePath" } = props;
const renderContent = () => {
return (
files.length > 0
?
: 暂无图片
);
};
return (
预览
);
};
export default TooltipPreviewImg;