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

34 行
1.2 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:key="lists" wx:for="{{lists}}">
  7. <view bindtap='jumpIndex' data-menuindex='{{index}}'>
  8. <view class='text-style'>
  9. <text class="{{indexId==index?'active1':''}}">{{item.title}}</text>
  10. <text class="{{indexId==index?'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>
  21. <image src='{{item.merchantImgUrl}}'></image>
  22. </view>
  23. <view>
  24. <text>{{item.merchantName}}</text>
  25. <text>{{item.buildingName}}{{item.floorName}}</text>
  26. </view>
  27. <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  28. </view>
  29. </view>
  30. <view class='position' wx:if="{{merchantVoList.length==0}}">
  31. 暂无数据
  32. </view>
  33. </view>