C端小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

36 righe
1.3 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 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. <text>{{item.buildingName}}{{item.floorName}}</text>
  27. </view>
  28. </view>
  29. <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  30. </view>
  31. </view>
  32. <view class='position' wx:if="{{merchantVoList.length==0}}">
  33. 暂无数据
  34. </view>
  35. </view>