1234567891011121314151617181920212223 |
- <!--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="{{lessonData}}" wx:key="{{index}}" >
- <view class="graph">
- <view class="yuan {{item.isStudy ? 'check' : 'no-check'}} "></view>
- </view>
- <view class="{{item.isStudy ? 'art-con' : 'art-con-color'}}">
- <text >{{item.title}}</text>
- <text>{{item.isStudy ? '28分钟前' : '未学习'}}</text>
- </view>
- </view>
- </view>
- <text class="unfold" data-flag="{{flag}}" bindtap="onTap">展开</text>
- </view>
|