fix: no request, search model

This commit is contained in:
jialin
2024-10-15 17:52:02 +08:00
parent 8fbdb884c7
commit a47f7cc0ce
10 changed files with 150 additions and 83 deletions
+10 -3
View File
@@ -23,12 +23,19 @@ const ThumbImg: React.FC<{
<div className="thumb-list-wrap">
{_.map(dataList, (item: any) => {
return (
<span key={item.uid} className="thumb-img">
<span
key={item.uid}
className="thumb-img"
style={{
width: item.width,
height: item.height
}}
>
<span className="img">
<Image
src={item.dataUrl}
width={56}
height={56}
width={item.width}
height={item.height}
preview={{
mask: <EyeOutlined />
}}