You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
944 B
26 lines
944 B
<view >
|
|
<swiper id="gun" catchtap='onSwiperTap' vertical='{{false}}' indicator-dots='true' indicator-active-color='#fff' autoplay='true' interval='5000' circular>
|
|
<swiper-item>
|
|
<image class='roll_img' src='/static/img/111111.jpg' data-postId='0'></image>
|
|
</swiper-item>
|
|
<swiper-item>
|
|
<image class='roll_img' src="/static/img/22222.jpg" data-postId='1'></image>
|
|
</swiper-item>
|
|
<swiper-item>
|
|
<image class='roll_img' src="/static/img/33333.jpg" data-postId='2'></image>
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|
|
<view class="movie-list">
|
|
<block class="movie-list-ul" wx:for="{{posts_key}}" wx:for-item="item" wx:key="*this">
|
|
<view class="movie-list-li" bindtap="jumpBtn" data-postId='{{item.postId}}'>
|
|
<view class="item-top">
|
|
<image src='{{item.img}}'></image>
|
|
</view>
|
|
<view class="item-bottom">
|
|
<view>{{item.title}}</view>
|
|
<text>{{item.score}}</text>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view> |