Explorar o código

fix: 组件图片超出范围问题

outaozhen %!s(int64=2) %!d(string=hai) anos
pai
achega
220cf4ec89
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/pages/Business/Matter/components/Picture.tsx

+ 1 - 1
src/pages/Business/Matter/components/Picture.tsx

@@ -22,7 +22,7 @@ const Picture: React.FC<PictureProps> = ({ type }) => {
   }
   return (
     <div>
-      <Image width={1000} src={ImageUrlMap[type]} />
+      <Image width={950} preview={false} src={ImageUrlMap[type]} />
     </div>
   )
 }