12345678910111213141516171819202122232425 |
- import { Video } from '@tarojs/components';
- import { compressImage } from '@/utils'
- import './style.less'
-
- export default (props) => {
- const { item } = props
- return (
- <>
- {
- item.contentType == 'image' ?
- <image src={compressImage(item.content)} mode='widthFix' style={{ width: '100%' }} className='image-content' /> :
- item.contentType == 'text' ?
- <view style={{ marginBottom: '5px' }}>
- <view className='storezn'>{item.content}</view>
- </view>
- :
- <Video
- controls
- autoplay={false}
- loop={false}
- muted={false} style={{ width: "100%", height: '200px' }} src={item.content}></Video>
- }
- </>
- )
- }
|