import './card-img-select.css' import {Image} from "antd"; import {errorImage} from "../../util/CommonUtil.ts"; import {Axios} from "../../util/AjaxUtils.ts"; export type ImgSelect = { id: string; title: string; imgs: string; selected?: boolean; handleClick?(): void; } export default function CardImgSelect(props: ImgSelect) { const imgSrc = `${Axios.defaults?.baseURL}/route/file/v2/download/true/${props.imgs}`; console.log(imgSrc) return (