chapter.wxml 766 B

12345678910111213141516171819202122
  1. <!-- <view class="plv-mp-chapter-wrap"> -->
  2. <scroll-view scroll-y class="plv-mp-chapter-list plv-mp-skin__{{ skin }}">
  3. <view
  4. wx:for="{{ list }}"
  5. wx:for-index="index"
  6. wx:for-item="item"
  7. wx:key="index"
  8. class="plv-mp-chapter-item {{ curIndex === index ? 'plv-mp-chapter-item-selected' : '' }}"
  9. bindtap="tapChapterItem"
  10. data-index="{{ index }}"
  11. >
  12. <image
  13. class="plv-mp-chapter-item__icon"
  14. src="{{ curIndex === index ? '../../assets/images/icon-chapter-onfocus.png' : ('../../assets/images/' + skin + '/icon-chapter-normal.png') }}"
  15. ></image>
  16. <view class="plv-mp-chapter-item__content">
  17. <text>{{ item.title }}</text>
  18. <text>{{ item.duration }}</text>
  19. </view>
  20. </view>
  21. </scroll-view>
  22. <!-- </view> -->