lessonList.wxml 1.0 KB

1234567891011121314151617181920212223242526272829
  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>
  20. </view>
  21. <view class="unfold" wx:if="{{height}}">
  22. <image class="dirImg" src="{{src}}"></image>
  23. <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  24. </view>
  25. </view>