67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
<view class="container">
|
|
<navigator url='../search/search'>
|
|
<view class="header" style="margin-top: {{height}}px;">
|
|
<image src="../../static/logoing.png"></image>
|
|
<van-search
|
|
shape="round"
|
|
class="search-input"
|
|
value="{{ value }}"
|
|
placeholder="请输入搜索关键词" />
|
|
</view>
|
|
</navigator>
|
|
<lb-swiper list="{{SwiperList}}"/>
|
|
|
|
<van-grid border="{{false}}">
|
|
<van-grid-item use-slot data-id="{{index}}" wx:for="{{ typeList }}" bindtap="enterlist" wx:key="index">
|
|
<image src="{{item.icon}}"></image>
|
|
<text>{{item.text}}</text>
|
|
</van-grid-item>
|
|
</van-grid>
|
|
|
|
|
|
<van-row>
|
|
<van-col span="12">
|
|
<image
|
|
src="../../static/banner4.jpg"
|
|
alt="">
|
|
</image>
|
|
</van-col>
|
|
<van-col span="12">
|
|
<van-row>
|
|
<van-col span="24">
|
|
<image style="height: 118px"
|
|
src="../../static/banner2.jpg"
|
|
alt="">
|
|
</image>
|
|
<image style="height: 118px"
|
|
src="../../static/banner3.jpg"
|
|
alt="">
|
|
</image>
|
|
</van-col>
|
|
</van-row>
|
|
</van-col>
|
|
</van-row>
|
|
<van-row>
|
|
<van-col span="24">
|
|
<image style="height: 160px" src="../../static/banner1.jpg"
|
|
alt="">
|
|
</image>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
<van-row>
|
|
<van-col class="shop_item"
|
|
wx:for="{{ShopList}}"
|
|
span="12"
|
|
data-list="{{item}}"
|
|
bindtap="enterInfo"
|
|
wx:key="index">
|
|
<image src="{{item.wares_masterimg}}"></image>
|
|
<text class="title">{{item.wares_title}}</text>
|
|
<text class="info">{{ item.wares_info}}...</text>
|
|
<text class="price">¥{{item.wares_nowprice}}</text>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
</view>
|