Commit 017f66df by 姜雷

Merge branch 'develop' into 'test'

修复IOS图片显示问题 See merge request !17
parents 9c5eb96d 0a55a6c5
...@@ -49,12 +49,9 @@ class Perview extends Component { ...@@ -49,12 +49,9 @@ class Perview extends Component {
) : ( ) : (
list.map((item, index) => list.map((item, index) =>
item ? ( item ? (
<img <div className={styles.carouselImg} key={index}>
className={styles.carouselImg} <img src={item.url || item} alt="" />
key={index} </div>
src={item.url || item}
alt=""
/>
) : null ) : null
) )
)} )}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment