preview.wxml 765 B

1234567891011121314151617181920212223242526
  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}}">
  11. <view wx:if="{{ item.warePath }}" class="art-img" wx:for="{{materialData}}" wx:key="{{index}}">
  12. <text>{{item.warePath}}</text>
  13. <text>点击预览</text>
  14. </view>
  15. </view>
  16. <view class="unfold">
  17. <image class="dirImg" src="{{src}}"></image>
  18. <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  19. </view>
  20. </view>