lessonList.wxml 929 B

123456789101112131415161718192021222324
  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}}">
  11. <view class="art-lesson" wx:for="{{arr}}" wx:key="{{index}}" >
  12. <view class="graph">
  13. <view class="yuan check"></view>
  14. <view class="long-line check {{(arr.length - 1 == index) || (index == 3 && !flag) ? 'none' : ''}}" ></view>
  15. </view>
  16. <view class="art-con">
  17. <text>{{item}}</text>
  18. <text>28分钟前</text>
  19. </view>
  20. </view>
  21. </view>
  22. <text class="unfold" data-flag="{{flag}}" bindtap="onTap">展开</text>
  23. </view>