|
@@ -293,7 +293,7 @@ const TaskOrder: React.FC<IPropsType> = (props) => {
|
|
const renderImg = () => {
|
|
const renderImg = () => {
|
|
return (
|
|
return (
|
|
<PhotoProvider maskOpacity={0.5}>
|
|
<PhotoProvider maskOpacity={0.5}>
|
|
- <Col className={styles.fontS28} span={18}>
|
|
|
|
|
|
+ <div className={styles.fontS28} style={{ width: '80%' }}>
|
|
{orderInfo?.MandateImages?.map((photo, index) => (
|
|
{orderInfo?.MandateImages?.map((photo, index) => (
|
|
<PhotoView key={index} src={photo.src}>
|
|
<PhotoView key={index} src={photo.src}>
|
|
<img
|
|
<img
|
|
@@ -307,7 +307,7 @@ const TaskOrder: React.FC<IPropsType> = (props) => {
|
|
/>
|
|
/>
|
|
</PhotoView>
|
|
</PhotoView>
|
|
))}
|
|
))}
|
|
- </Col>
|
|
|
|
|
|
+ </div>
|
|
</PhotoProvider>
|
|
</PhotoProvider>
|
|
);
|
|
);
|
|
};
|
|
};
|