|
@@ -1,9 +1,12 @@
|
|
|
<wxs src="../../utils/filter.wxs" module="filters" />
|
|
|
<navigationBar bind:reload='reload' showNav="{{false}}"></navigationBar>
|
|
|
<view class="matchBox">
|
|
|
- <image src="{{explain}}" class="headerImg" />
|
|
|
- <!-- <banner bannerList="{{bannerList}}" /> -->
|
|
|
-
|
|
|
+ <swiper class="swiper" autoplay circular indicator-dots="{{bannerList.length>1}}" indicator-active-color="#fff"
|
|
|
+ indicator-color='#ecececa1'>
|
|
|
+ <swiper-item wx:for="{{bannerList}}" wx:key="id">
|
|
|
+ <image src="{{item.icon}}" class="headerImg" />
|
|
|
+ </swiper-item>
|
|
|
+ </swiper>
|
|
|
<view class="modelText">
|
|
|
<view class="header">
|
|
|
<image src="/static/modelBg.png" class="bg" />
|
|
@@ -11,11 +14,9 @@
|
|
|
</view>
|
|
|
<swiper class="swiper" autoplay circular indicator-dots previous-margin='40px' next-margin='20px'
|
|
|
indicator-active-color="#7ACAFF" indicator-color='#BABABA'>
|
|
|
- <block wx:for="{{bannerList}}" wx:key="id">
|
|
|
- <swiper-item>
|
|
|
- <image src="{{item.coverImg}}" class="swiper-item" bindtap='bannelEvent' data-id='{{item.exampleId}}' />
|
|
|
- </swiper-item>
|
|
|
- </block>
|
|
|
+ <swiper-item wx:for="{{modelList}}" wx:key="id">
|
|
|
+ <image src="{{item.coverImg}}" class="swiper-item" bindtap='bannelEvent' data-id='{{item.exampleId}}' />
|
|
|
+ </swiper-item>
|
|
|
</swiper>
|
|
|
</view>
|
|
|
<view class="rankList">
|