C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

49 строки
2.0 KiB

  1. <navbar text="门店"></navbar>
  2. <!-- 左侧滚动栏 -->
  3. <view style="height:{{navigationBarHeight}} "></view>
  4. <view class="search" bindtap="goSearchBar">
  5. <span class="iconfont icon-sousuo searchicon"></span>搜索门店</view>
  6. <view>
  7. <view class='under_line'></view>
  8. <view style='float: left;' class='left'>
  9. <scroll-view scroll-y scroll-with-animation scroll-left="{{scrollLength}}" class='scrollY' style='height: {{windowHeight-160}}px;'>
  10. <view class='all clear'>
  11. <block wx:for="{{lists}}" wx:key="index">
  12. <view bindtap='jumpIndex' data-menuindex='{{item.id}}'>
  13. <view class="{{indexId==item.id?'text-style':'text-styleHover'}}">
  14. <text class="{{indexId==item.id?'active1':''}}">{{item.title}}</text>
  15. <text class="{{indexId==item.id?'active':''}}"></text>
  16. </view>
  17. </view>
  18. </block>
  19. </view>
  20. </scroll-view>
  21. </view>
  22. <view class='lists'>
  23. <view class='posi' wx:if="{{merchantVoList.length>0}}">
  24. <view class='posi_logo' wx:for="{{merchantVoList}}" wx:key="index">
  25. <view class='merchants' bindtap='gotoDetail' data-id='{{item.id}}'>
  26. <view style=' margin-left: 24rpx;margin-top: 24rpx;'>
  27. <image src='{{item.merchantImgUrl}}'></image>
  28. </view>
  29. <view class='leftBox'>
  30. <view class='merchantName'>{{item.merchantName}}</view>
  31. <view class='shopVo'>
  32. <view class='shopVoList'>
  33. <text wx:for="{{item.shopVoList}}" wx:key="index" wx:for-item="itemName">{{itemName.buildingName}}{{itemName.floorName}}--{{itemName.shopNumber}}</text>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <image wx:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantLinkPhone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  39. </view>
  40. </view>
  41. <view class='position' wx:if="{{merchantVoList.length==0}}">
  42. 暂无数据
  43. </view>
  44. </view>
  45. </view>
  46. <image class="map" src="{{map}}" bindtap="goMap">
  47. </image>