12345678910111213141516171819202122 |
- <!--pages/com_search/com_search.wxml-->
- <!-- 搜素框 -->
- <view class="search_box">
- <view class="base_search">
- <van-icon name="search" size="50rpx" color="#696969" style="margin-top: 15rpx; margin-left: -430rpx;"/>
- <input type="search" name="" placeholder="搜索..." value="{{inputValue}}" class="search_text" bind:tap="searchTo"/>
- <van-icon name="cross" style="float: right; margin-top: 24rpx; margin-right: 15rpx;"/>
- </view>
- <!-- 搜索按钮 -->
- <view class="search_button" bind:tap="onClose" catch:tap="searchBegin" data-searchdata="{{inputValue}}">搜索</view>
- </view>
- <view class="commodity">
- <view class="commodity_show" wx:for="{{resultList}}" wx:key="index">
- <view bind:tap="detailTo" data-id='{{item.Id}}' data-price='{{item.Price}}' data-Title='{{item.Title}}' data-pic='{{item.Pic}}'>
- <image src="{{item.Pic}}" alt="" class="commodity_image"/>
- <text class="commodity_name">{{item.Title}}</text>
- <text class="price">¥{{item.Price}}</text>
- <avatar></avatar>
- </view>
- </view>
- </view>
|