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.
 

61 lines
2.3 KiB

<scroll-view scroll-y="true" height="100%">
<swiper style="height:410rpx;" indicator-dots="true" autoplay="true" interval="5000" duration="1000">
<block wx:for="{{slides}}" wx:for-item="slide" wx:key="id">
<swiper-item>
<navigator url="{{slide.url}}">
<image class="slide-img" src="{{slide.img}}" mode="aspectFit"/>
</navigator>
</swiper-item>
</block>
</swiper>
<view class="navs">
<block wx:for-items="{{navs}}" wx:key="name">
<view class="nav-item" catchtap="catchTapCategory" data-type="{{item.name}}">
<image src="{{item.icon}}" class="nav-image"/>
<text>{{item.name}}</text>
</view>
</block>
</view>
<view class="separate"></view>
<view class="cate-container">
<view class="category-title">
<view class="icon"><image src="../../images/hot_small.png"></image></view>
<view><text class="name">每周爆款</text></view>
</view>
<block wx:for="{{hot_products}}" wx:for-item="item" wx:key="id">
<view class="item" bindtap="bindShowProduct" data-id="{{item.id}}">
<image class="head-img" src="{{item['promotion-url']}}" mode="aspectFit"></image>
</view>
</block>
</view>
<view class="separate"></view>
<view class="cate-container">
<view class="category-title">
<view class="icon"><image src="../../images/new_small.png"></image></view>
<view><text class="name">新品上架</text></view>
</view>
<block wx:for="{{new_products}}" wx:for-item="item" wx:key="id">
<view class="item" bindtap="bindShowProduct" data-id="{{item.id}}">
<image class="head-img" src="{{item['promotion-url']}}" mode="aspectFit"></image>
</view>
</block>
</view>
<view class="separate"></view>
<view class="cate-container">
<view class="category-title">
<view class="icon"><image src="../../images/volume_small.png"></image></view>
<view><text class="name">热销商品</text></view>
</view>
<block wx:for="{{popularity_products}}" wx:for-item="item" wx:key="id">
<view class="item" bindtap="bindShowProduct" data-id="{{item.id}}">
<image class="head-img" src="{{item['promotion-url']}}" mode="aspectFit"></image>
</view>
</block>
</view>
</scroll-view>