index.js
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import Taro, {Component} from '@tarojs/taro';
import {View, Text, Image, Navigator} from '@tarojs/components';
import {getImgUrl} from '../../utils';
import './index.scss';
export default class ProductList extends Component {
constructor(props) {
super(props);
this.state = {};
}
static defaultProps = {
list: []
}
render() {
let {list} = this.props;
return (
<View className="product-list">
{
list.map(item => {
return (
<View className="product-item" key={item.id}>
<Navigator url={'/pages/productDetail/index?id=' + item.id} hover-class="none">
<Text className="product-price">{item.price ? '¥' + item.price : ''}</Text>
<Image src={getImgUrl(item.default_images, 376, 376)} mode="aspectFill" className="product-img"/>
<Text className="product-name">{item.product_name}</Text>
</Navigator>
</View>
)
})
}
</View>
)
}
}