41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
<!-- 企获客商城 -->
|
|
<view class="mallBox">
|
|
<view class="mallCont">
|
|
<!-- 搜索 -->
|
|
<navigator hover-class="none" url="/pages/mall/mall_search/mall_search" class="mallCont-search">
|
|
<image class="mallCont-search-icon" src="/static/mall_icon/mall_search.png"></image>
|
|
搜索商品
|
|
</navigator>
|
|
|
|
<!-- 轮播图 -->
|
|
<view class="banner">
|
|
<swiper class="banner-swiper" indicator-dots autoplay circular interval="3500" indicator-color="#ebebeb"
|
|
indicator-active-color="#fff">
|
|
<swiper-item wx:for="{{banners}}" wx:key="banners">
|
|
<image class="banner-img" src="{{item.cover}}" mode="aspectFill"></image>
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|
|
|
|
<!-- 商城分类 -->
|
|
<mallIndex_nav categories="{{categories}}"></mallIndex_nav>
|
|
|
|
<!-- 免费券专区 -->
|
|
<block wx:if="{{freeCoupon.length > 0}}">
|
|
<mallIndex_coupon freeCoupon="{{freeCoupon}}"></mallIndex_coupon>
|
|
</block>
|
|
|
|
<!-- 优惠热卖 -->
|
|
<block wx:if="{{hotSale.length > 0}}">
|
|
<mallIndex_hot hotSale="{{hotSale}}"></mallIndex_hot>
|
|
</block>
|
|
|
|
<!-- 视频专区 -->
|
|
<mallIndex_video hotSale="{{videoArea}}"></mallIndex_video>
|
|
|
|
<!-- 为你推荐 -->
|
|
<block wx:if="{{pushList.length > 0}}">
|
|
<mallIndex_list push-list="{{pushList}}" loding-stats="{{lodingStats}}" has-more="{{page.has_more}}"></mallIndex_list>
|
|
</block>
|
|
</view>
|
|
</view> |