preview.wxml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!--compontents/lesson_list/lessonList.wxml-->
  2. <view class="material">
  3. <view class="this-week">
  4. <image src="../../pages/image/study.png"></image>
  5. <view class="lesson-name">
  6. <text>学习资料</text>
  7. <text>本周和历史学习资料</text>
  8. </view>
  9. </view>
  10. <view class="material-con" animation="{{animationData}}" style="height: {{height}}rpx">
  11. <view class="art-img" wx:if="{{ item.warePath && item.fileName}}" wx:for="{{materialData}}" wx:key="{{index}}" style="padding-bottom: 6rpx;">
  12. <text>{{item.fileName}}</text>
  13. <text data-warePath="{{item.warePath}}" bindtap="preview">点击预览</text>
  14. <view wx:if="{{index == 0 && height == 72}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></view>
  15. <view wx:if="{{index == 1 && height == 144}}" style="border-bottom: 2rpx solid #ccc; width: 100%; height: 2rpx; position:absolute; left: 0; bottom: 0;"></view>
  16. </view>
  17. </view>
  18. <view class="unfold" wx:if="{{height}}">
  19. <image class="dirImg" src="{{src}}"></image>
  20. <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  21. </view>
  22. </view>