You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!-- <navbar home back text="门店搜索"></navbar>
- <view style="height:{{navigationBarHeight}} "></view> -->
- <view class="weui-search-bar {{extClass}}" >
- <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="{{searchText}}" value="{{value}}" bindfocus="inputFocus" disabled />
- <picker class="pickers" mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}" range-key="name">
- <view class="picker">
- 搜索搜索搜索搜索搜索搜索搜索搜索搜索搜索
- </view>
- </picker>
- <view class="weui-icon-clear" tt:if="{{value.length > 0}}" bindtap="clearInput" style="position:relative;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 tt:if="{{cancel && searchState}}" class="weui-search-bar__cancel-btn" bindtap="hideInput">{{cancelText}}</view>
- </view>
- <view class='lists'>
- <view class='posi' tt:if="{{merchantVoList.length>0}}" style="padding-bottom:100rpx;">
- <view class='posi_logo' tt:for="{{merchantVoList}}" tt: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' style="margin-top:20px;">{{item.merchantName}}</view>
- <view class='merchantName' style="color:#999;">{{item.businessName}}</view>
- </view>
- </view>
- <image tt:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
- </view>
- </view>
- <view class='position' tt:if="{{merchantVoList.length==0}}">
- 暂无数据
- </view>
- </view>
|