抖音c端
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.

42 lines
2.4 KiB

  1. <!-- <navbar home back text="门店搜索"></navbar>
  2. <view style="height:{{navigationBarHeight}} "></view> -->
  3. <view class="weui-search-bar {{extClass}}" >
  4. <view class="weui-search-bar__form">
  5. <view class="weui-search-bar__box" style="position:relative;">
  6. <icon class="weui-icon-search_in-box" type="search" size="12"></icon>
  7. <input type="text" class="weui-search-bar__input" placeholder="{{searchText}}" value="{{value}}" bindfocus="inputFocus" disabled />
  8. <picker class="pickers" mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}" range-key="name">
  9. <view class="picker">
  10. 搜索搜索搜索搜索搜索搜索搜索搜索搜索搜索
  11. </view>
  12. </picker>
  13. <view class="weui-icon-clear" tt:if="{{value.length > 0}}" bindtap="clearInput" style="position:relative;z-index:500000;">
  14. <icon type="clear" size="12"></icon>
  15. </view>
  16. </view>
  17. <label class="weui-search-bar__label" hidden="{{searchState}}" bindtap="showInput">
  18. <icon class="weui-icon-search" type="search" size="12"></icon>
  19. <view class="weui-search-bar__text">请输入</view>
  20. </label>
  21. </view>
  22. <view tt:if="{{cancel && searchState}}" class="weui-search-bar__cancel-btn" bindtap="hideInput">{{cancelText}}</view>
  23. </view>
  24. <view class='lists'>
  25. <view class='posi' tt:if="{{merchantVoList.length>0}}" style="padding-bottom:100rpx;">
  26. <view class='posi_logo' tt:for="{{merchantVoList}}" tt:key="index">
  27. <view class='merchants' bindtap='gotoDetail' data-id='{{item.id}}'>
  28. <view style=' margin-left: 24rpx;margin-top: 24rpx;'>
  29. <image src='{{item.merchantImgUrl}}'></image>
  30. </view>
  31. <view class='leftBox'>
  32. <view class='merchantName' style="margin-top:20px;">{{item.merchantName}}</view>
  33. <view class='merchantName' style="color:#999;">{{item.businessName}}</view>
  34. </view>
  35. </view>
  36. <image tt:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  37. </view>
  38. </view>
  39. <view class='position' tt:if="{{merchantVoList.length==0}}">
  40. 暂无数据
  41. </view>
  42. </view>