index.js
1.14 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
39
40
41
42
43
44
45
46
47
48
import Taro, {Component} from '@tarojs/taro';
import {Swiper, SwiperItem, Navigator, Image} from '@tarojs/components';
import {getImgUrl} from '../../utils';
import './index.scss';
export default class Focus extends Component {
constructor(props) {
super(props);
this.state = {};
}
static defaultProps = {
floor: []
}
componentWillMount() {}
componentDidMount() {}
componentWillUnmount() {}
componentDidShow() {}
componentDidHide() {}
render() {
let {floor} = this.props;
return (
<Swiper
className='index-swiper'
>
{
floor.map((item, index) => {
return (
<SwiperItem key={index}>
<Navigator url={item.url} hover-class="none">
<Image src={getImgUrl(item.src, 670, 280)} mode="aspectFill" />
</Navigator>
</SwiperItem>
)
})
}
</Swiper>
)
}
}