12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view class="container">
- <view bindtap="__e" class="input-box flex" data-event-opts="{{[ [ 'tap',[ [ 'clickSearch',['$event'] ] ] ] ]}}">
- <view class=" input-content flex">
- <view class="iconfont iconsearch"></view>
- <view class="input">
- <input disabled="{{true}}" placeholder="请输入搜索内容" type="text"></input>
- </view>
- </view>
- </view>
- <view class="mp-height"></view>
- <view class="carousel-section">
- <view class="titleNview-placing"></view>
- <view class="titleNview-background" style="{{'background-color:'+'#5DBC7C'+';'}}"></view>
- <swiper autoplay="true" bindchange="__e" class="carousel" data-event-opts="{{[ [ 'change',[ [ 'swiperChange',['$event'] ] ] ] ]}}" duration="400" interval="5000">
- <swiper-item class="carousel-item" wx:for="{{carouselList}}" wx:key="index">
- <image bindtap="__e" data-event-opts="{{[ [ 'tap',[ [ 'bannerNavToUrl',['$0'],[ [ ['carouselList','',index] ] ] ] ] ] ]}}" mode="aspectFill" src="{{item.pic}}"></image>
- </swiper-item>
- </swiper>
- </view>
- <view class="explosion-box">
- <view class="titleBgBox">
- <image class="titBg" mode="widthFix" src="../../static/img/indexItembg.png"></image>
- </view>
- <view bindtap="__e" class="explosion-frame" data-event-opts="{{[ [ 'tap',[ [ 'goProduct',['$0'],[ [ ['pinkTuanList','',index,'id'] ] ] ] ] ] ]}}" wx:for="{{pinkTuanList}}" wx:key="index">
- <image class="explo-good-img" mode="aspectFit" src="{{item.image}}"></image>
- <view class="explo-good-box">
- <view class="explo-good-tit">{{item.store_name}}</view>
- <view class="explo-good-bottom">
- <view class="explo-jf-box">
- <text class="explo-zeng">¥</text>
- <text class="explo-price">{{item.price}}</text>
- </view>
- <view class="explo-price-box">
- <text class="explo-jfText">立即购买</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|