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.
|
|
|
<!--index.wxml-->
|
|
|
|
<view class="container">
|
|
|
|
<scroll-view class="scrollList" scroll-x="true" enable-flex="true">
|
|
|
|
<text wx:for="{{condition}}" class="{{index === 0 ? 'actived' : ''}}">{{item}}</text>
|
|
|
|
</scroll-view>
|
|
|
|
<view class="top">
|
|
|
|
<!-- <view style="width: 100%;position: fixed;left: 0rpx;">
|
|
|
|
<image class="logo1" src="" style="width: 286rpx;height: 24rpx;"></image>
|
|
|
|
<image class="logo2" src="" style="width: 750rpx;height: 100rpx;"></image>
|
|
|
|
</view> -->
|
|
|
|
<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>
|
|
|
|
</view>
|