123456789101112131415161718192021222324 |
- <!--compontents/lesson_list/lessonList.wxml-->
- <view class="lesson-list">
- <view class="this-week">
- <image src="../../pages/image/courseware.png"></image>
- <view class="lesson-name">
- <text>课件列表</text>
- <text>本周推荐课已经完成了</text>
- </view>
- </view>
- <view class=" timer-shaft " animation="{{animationData}}">
- <view class="art-lesson" wx:for="{{arr}}" wx:key="{{index}}" >
- <view class="graph">
- <view class="yuan check"></view>
- <view class="long-line check {{(arr.length - 1 == index) || (index == 3 && !flag) ? 'none' : ''}}" ></view>
- </view>
- <view class="art-con">
- <text>{{item}}</text>
- <text>28分钟前</text>
- </view>
- </view>
- </view>
- <text class="unfold" data-flag="{{flag}}" bindtap="onTap">展开</text>
- </view>
|