classification.wxml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!--pages/classification/classification.wxml-->
  2. <!-- 搜索框 -->
  3. <view class="search marginTopBottom">
  4. <view class="icon-search"></view>
  5. <input placeholder="搜索你想听的节目"></input>
  6. </view>
  7. <!-- 分类索引 -->
  8. <view class="ification">
  9. <!-- 左边部分 -->
  10. <!-- 刻度尺的样式未能实现 -->
  11. <scroll-view class="scroll-left" scroll-y scroll-with-animation style="height:{{phoneHeight}}rpx" scroll-top="{{VerticalNavTop}}">
  12. <block wx:for="{{ificationTitle}}" wx:key="index">
  13. <view class="leftTitle {{index === activeIndex ? 'active':''}}" data-index="{{index}}" data-id="{{index}}" bindtap="change">{{item.title}}</view>
  14. </block>
  15. </scroll-view>
  16. <!-- 右边部分 -->
  17. <scroll-view class="scroll-right" scroll-y bindscroll="showActive" style="height:{{phoneHeight}}rpx" scroll-into-view="main-id-{{TabCur}}">
  18. <view class="contentScroll-item" wx:for="{{ificationContent}}" wx:key="index" data-index="{{index}}" id="main-id-{{index}}" >
  19. <view class="top">
  20. <view class="contentTitle">
  21. {{item.title}}
  22. <text class="icon-right"></text>
  23. </view>
  24. </view>
  25. <view class="content">
  26. <view class="contentText" wx:for="{{item.content}}" wx:key>
  27. {{item.text}}
  28. </view>
  29. </view>
  30. </view>
  31. </scroll-view>
  32. </view>