1234567891011121314151617181920212223242526 |
- <!--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 wx:if="{{ item.warePath }}" class="art-img" wx:for="{{materialData}}" wx:key="{{index}}">
- <text>{{item.warePath}}</text>
- <text>点击预览</text>
- </view>
- </view>
-
- <view class="unfold">
- <image class="dirImg" src="{{src}}"></image>
- <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
- </view>
-
- </view>
|