classification.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  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. <scroll-view class="scroll-left" scroll-y scroll-with-animation style="height:{{phoneHeight}}rpx" scroll-top="{{VerticalNavTop}}">
  11. <block wx:for="{{ificationTitle}}" wx:key="index">
  12. <view class="leftTitle {{index === activeIndex ? 'active':''}}" data-index="{{index}}" data-id="{{index}}" bindtap="change">{{item.title}}</view>
  13. </block>
  14. </scroll-view>
  15. <!-- 右边部分 -->
  16. <scroll-view class="scroll-right" scroll-y bindscroll="showActive" style="height:{{phoneHeight}}rpx" scroll-into-view="main-id-{{TabCur}}">
  17. <view class="contentScroll-item" wx:for="{{ificationContent}}" wx:key="index" data-index="{{index}}" id="main-id-{{index}}" >
  18. <view class="top">
  19. <view class="contentTitle">
  20. {{item.title}}
  21. <text class="icon-right"></text>
  22. </view>
  23. </view>
  24. <view class="content">
  25. <view class="contentText" wx:for="{{item.content}}" wx:key>
  26. {{item.text}}
  27. </view>
  28. </view>
  29. </view>
  30. </scroll-view>
  31. </view>