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
655 B

<!--index.wxml-->
<view class="container">
<scroll-view class="scrollList" scroll-x="true" enable-flex="true">
<text wx:for="{{condition}}" class="{{index === 0 ? 'actived' : ''}}" wx:key="index">{{item}}</text>
</scroll-view>
<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>
</view>
<view class="box_bot">
<view class="box_title">{{item.title}}</view>
<view class="box_num">{{item.num}}</view>
</view>
</view>
</view>
<tabbar tabbar="{{tabbar}}"></tabbar>
</view>