- <navbar home back text="门店搜素"></navbar>
- <view class="weui-search-bar {{extClass}}" style="margin-top:{{navigationBarHeight}}rpx">
- <view class="weui-search-bar__form">
- <view class="weui-search-bar__box" style="position:relative;">
- <icon class="weui-icon-search_in-box" type="search" size="12"></icon>
- <input type="text" class="weui-search-bar__input" placeholder="{{placeholder}}" value="{{value}}" bindfocus="inputFocus" bindinput="inputChange" disabled />
- <picker class="pickers" mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}">
- <view class="picker">
- 搜索搜索搜索搜索搜索搜索搜索搜索搜索搜索
- </view>
- </picker>
- <view class="weui-icon-clear" wx:if="{{value.length > 0}}" bindtap="clearInput" style="z-index:500000;">
- <icon type="clear" size="12"></icon>
- </view>
- </view>
- <label class="weui-search-bar__label" hidden="{{searchState}}" bindtap="showInput">
- <icon class="weui-icon-search" type="search" size="12"></icon>
- <view class="weui-search-bar__text">请输入</view>
- </label>
- </view>
- <view wx:if="{{cancel && searchState}}" class="weui-search-bar__cancel-btn" bindtap="hideInput">{{cancelText}}</view>
- </view>
- <!-- <mp-cells class="searchbar-result {{extClass}}" wx:if="{{searchState && result.length > 0}}">
- <mp-cell bindtap="selectResult" data-index="{{index}}" wx:for="{{result}}" hover>
- <view>{{item.text}}</view>
- </mp-cell>
- </mp-cells> -->
- <view class='lists'>
- <view class='posi' wx:if="{{merchantVoList.length>0}}" style="padding-bottom:100rpx;">
- <view class='posi_logo' wx:for="{{merchantVoList}}" wx:key="index">
- <view class='merchants' bindtap='gotoDetail' data-id='{{item.id}}'>
- <view style=' margin-left: 24rpx;margin-top: 24rpx;'>
- <image src='{{item.merchantImgUrl}}'></image>
- </view>
- <view class='leftBox'>
- <view class='merchantName'>{{item.merchantName}}</view>
- <view class='shopVo'>
- <view class='shopVoList' >
- <text wx:for="{{item.shopVoList}}" wx:key="{{index}}" wx:for-item="itemName">{{itemName.buildingName}}{{itemName.floorName}}--{{itemName.shopNumber}}</text>
- </view>
- </view>
- </view>
- </view>
- <image wx:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
- </view>
- </view>
- <view class='position' wx:if="{{merchantVoList.length==0}}">
- 暂无数据
- </view>
- </view>
|