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.

44 lines
2.1 KiB

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