C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
1.9 KiB

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