lessonList.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <!--compontents/lesson_list/lessonList.wxml-->
  2. <view class="lesson-list">
  3. <view class="this-week">
  4. <image src="../../pages/image/courseware.png"></image>
  5. <view class="lesson-name">
  6. <text>课件列表</text>
  7. <text>本周推荐课</text>
  8. </view>
  9. </view>
  10. <view class=" timer-shaft " animation="{{animationData}}" style="height: {{height}}rpx">
  11. <view class="art-lesson" wx:for="{{lessonData}}" wx:key="{{index}}">
  12. <view class="graph">
  13. <view class="yuan {{item.isStudy ? 'check' : 'no-check'}} "></view>
  14. </view>
  15. <view class="{{item.isStudy ? 'art-con' : 'art-con-color'}}">
  16. <text >{{item.title}}</text>
  17. <text>{{item.isStudy ? item.studyDate : '未学习'}}</text>
  18. </view>
  19. <view wx:if="{{index == 0 && height == 72}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></view>
  20. <view wx:if="{{index == 1 && height == 144}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></view>
  21. </view>
  22. </view>
  23. <view class="unfold" wx:if="{{height}}">
  24. <image class="dirImg" src="{{src}}"></image>
  25. <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  26. </view>
  27. </view>