<!--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}}" style="height: {{height}}rpx"> <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 ? item.studyDate : '未学习'}}</text> </view> </view> </view> <view class="unfold" wx-if="{{height}}"> <image class="dirImg" src="{{src}}"></image> <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text> </view> </view>