classification.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <!-- 搜索框 -->
  2. <search></search>
  3. <!-- 分类索引 -->
  4. <view class="hmly-ification">
  5. <!-- 左边部分 -->
  6. <scroll-view class="hmly-scroll-left" scroll-y scroll-with-animation style="height:{{phoneHeight}}rpx"
  7. scroll-top="{{VerticalNavTop}}">
  8. <block wx:for="{{ificationTitle}}" wx:key="index">
  9. <view class="hmly-left-title {{index === activeIndex ? 'hmly-active':''}}" data-index="{{index}}"
  10. data-id="{{index}}" bindtap="change">
  11. {{item.title}}
  12. </view>
  13. </block>
  14. </scroll-view>
  15. <!-- 右边部分 -->
  16. <scroll-view class="hmly-scroll-right" scroll-y bindscroll="showActive" style="height:{{phoneHeight}}rpx"
  17. scroll-into-view="main-id-{{TabCur}}">
  18. <view class="hmly-content-scroll-item" wx:for="{{ificationContent}}" wx:key="index" data-index="{{index}}"
  19. id="main-id-{{index}}">
  20. <view class="hmly-top">
  21. {{item.title}}
  22. <text class="icon-right"></text>
  23. </view>
  24. <view class="hmly-content">
  25. <view class="hmly-content-text" wx:for="{{item.content}}" wx:key="index">
  26. {{item.text}}
  27. </view>
  28. </view>
  29. </view>
  30. </scroll-view>
  31. </view>