|
@@ -3,6 +3,7 @@ import './index.scss'
|
3
|
3
|
import { getThumbnail } from '@utils/tools'
|
4
|
4
|
|
5
|
5
|
const dotImg = require('@assets/dot.png')
|
|
6
|
+
|
6
|
7
|
export default class Index extends Component {
|
7
|
8
|
static options = {
|
8
|
9
|
addGlobalClass: true
|
|
@@ -55,8 +56,8 @@ export default class Index extends Component {
|
55
|
56
|
<Text className='item__bottom__seenum'>{total}人围观</Text>
|
56
|
57
|
|
57
|
58
|
<View className='see__img'>
|
58
|
|
- {records.slice(0, 4).map(item => <Image className='userImg' key={item.uvId} src={item.photoOravatar}></Image>)}
|
59
|
|
- {records.length > 4 && <Image className="dot-img" src={dotImg}></Image>}
|
|
59
|
+ {records.slice(0, 4).map(item => <Image className='userImg' key={item.uvId} src={getThumbnail(item.photoOravatar)}></Image>)}
|
|
60
|
+ {records.length > 4 && <Image className="dot-img" src={getThumbnail(dotImg)}></Image>}
|
60
|
61
|
</View>
|
61
|
62
|
|
62
|
63
|
</View>
|