classification.wxml 1.2 KB

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