12345678910111213141516171819202122232425262728 |
- <!--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}}" style="height: {{height}}rpx">
- <view class="art-img" wx:if="{{ item.warePath && item.fileName}}" wx:for="{{materialData}}" wx:key="{{index}}" style="padding-bottom: 6rpx;">
- <text>{{item.fileName}}</text>
- <text data-warePath="{{item.warePath}}" bindtap="preview">点击预览</text>
- <view wx:if="{{index == 0 && height == 72}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></view>
- <view wx:if="{{index == 1 && height == 144}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></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>
|