Files
ClassContent/历届学生/17届课程/wxShopApp/myWxapp/pages/search/search.wxml
2024-09-27 02:06:13 +08:00

31 lines
1.2 KiB
Plaintext

<view class="search">
<view class="search_head" style="margin-top: {{height}}px;">
搜索
</view>
<view class="search_top">
<input placeholder="请输入搜索内容" class="button" value="{{SearchKeyword}}" bindtap="onChangeShowState" bindinput="getitems"/>
<view bindtap="cliekss" class="sum"><text>搜索</text></view>
</view>
<view class="content">
<view class="{{showView?'popular':'list'}}" bindtap="onChangeShowState">
<view class="title">热门搜索</view>
<van-tag round wx:for="{{tagList}}" data-hi="{{item.text}}" wx:key="index" type="warning" size="large" bindtap="getitem">{{item.text}}</van-tag>
</view>
<view class="{{showView?'list':'popular'}}">
<van-row type="flex">
<van-col class="shop_item"
wx:for="{{searchList}}"
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>
</view>
</view>