classification.wxml 1.1 KB

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