classification.wxml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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">{{item.title}}</view>
  11. </block>
  12. </scroll-view>
  13. <!-- 右边部分 -->
  14. <scroll-view class="hmly-scroll-right" scroll-y bindscroll="showActive" style="height:{{phoneHeight}}rpx"
  15. scroll-into-view="main-id-{{TabCur}}">
  16. <view class="hmly-content-scroll-item" wx:for="{{ificationContent}}" wx:key="index" data-index="{{index}}"
  17. id="main-id-{{index}}">
  18. <view class="hmly-top">
  19. <view class="hmly-content-title">
  20. {{item.title}}
  21. <text class="icon-right"></text>
  22. </view>
  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>