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.

18 lines
640 B

3 years ago
<!--index.wxml-->
<view class="container">
3 years ago
<scroll-view class="scrollList" scroll-x="true" enable-flex="true">
<text wx:for="{{condition}}" class="{{index === 0 ? 'actived' : ''}}">{{item}}</text>
</scroll-view>
3 years ago
<view class="top">
<view wx:for="{{toplist}}" wx:key="url" class="top_box">
<view class="box_image">
<image style="width: 100%;height: 100%;" src="{{item.url}}"></image>
3 years ago
</view>
3 years ago
<view class="box_bot">
<view class="box_title">{{item.title}}</view>
<view class="box_num">{{item.num}}</view>
</view>
</view>
3 years ago
</view>
3 years ago
<tabbar tabbar="{{tabbar}}"></tabbar>
3 years ago
</view>