123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--compontents/lesson_list/lessonList.wxml-->
- <view class="material">
- <view class="this-week">
- <image src="../../pages/image/study.png"></image>
- <view class="lesson-name">
- <text>学习资料</text>
- <text>本周和历史学习资料</text>
- </view>
- </view>
- <view class="material-con" animation="{{animationData}}">
- <view class="art-img" wx:for="{{materialData}}" wx:key="{{index}}">
- <text>{{item.warePath}}</text>
- <text>点击预览</text>
- </view>
- </view>
- <text class="unfold" data-flag="{{flag}}" bindtap="onTap">展开</text>
- </view>
- <!-- <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" wx:if="{{!item.isStudy}}">
- <view class="yuan check"></view>
- <view class="long-line check {{(lessonData.length - 1 == index) || (index == 4 && !flag) ? 'none' : ''}}" ></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> -->
|