|
|
@ -67,7 +67,7 @@ const BrandInfo: FC = () => { |
|
|
|
<View className='flex flex-column' style={{display: 'flex'}}> |
|
|
|
<View className='flex flex-column' style={{display: 'flex'}}> |
|
|
|
<Spin enable={enable} overlay/> |
|
|
|
<Spin enable={enable} overlay/> |
|
|
|
{ |
|
|
|
{ |
|
|
|
(brandInfo?.introductory_video_resource?.url || brandInfo?.brand_album?.length) && |
|
|
|
(brandInfo?.introductory_video_resource?.url || brandInfo?.brand_album)?.length > 0 && |
|
|
|
<> |
|
|
|
<> |
|
|
|
<Swiper |
|
|
|
<Swiper |
|
|
|
className={styles['swiper']} |
|
|
|
className={styles['swiper']} |
|
|
@ -91,7 +91,8 @@ const BrandInfo: FC = () => { |
|
|
|
muted={false} |
|
|
|
muted={false} |
|
|
|
/> |
|
|
|
/> |
|
|
|
</SwiperItem>} |
|
|
|
</SwiperItem>} |
|
|
|
{brandInfo?.brand_album?.length |
|
|
|
{ |
|
|
|
|
|
|
|
(brandInfo?.brand_album?.length || 0) > 0 |
|
|
|
&& brandInfo?.brand_album?.split(',').map((d) => |
|
|
|
&& brandInfo?.brand_album?.split(',').map((d) => |
|
|
|
<SwiperItem> |
|
|
|
<SwiperItem> |
|
|
|
<Img mode={'aspectFill'} width={750} height={600} src={d}/> |
|
|
|
<Img mode={'aspectFill'} width={750} height={600} src={d}/> |
|
|
|