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.

40 line
1.6 KiB

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