courses.wxml 1.1 KB

123456789101112131415161718192021
  1. <!-- <wxs src="../../pages/commonWxs/format.wxs" module="format" /> -->
  2. <template name="courses">
  3. <view class="courses_container">
  4. <view class="course_item" bindtap="goToReading" wx:for="{{coursesData}}" data-id="{{item.lesson.id}}" wx:key="index">
  5. <image class="course_icon" src="{{item.lesson.iconImg}}" lazy-load="true" />
  6. <view class="course_info">
  7. <text class="course_title">{{item.lesson.title}}</text>
  8. <view class="course_btn">
  9. <view class="collect course_btn">
  10. <image class="collect_icon btn_icon" src="../../static/image/collect.png" />
  11. <text class="collect_text btn_text">收藏</text>
  12. </view>
  13. <view class="share course_btn">
  14. <image class="share_icon btn_icon" src="../../static/image/share.png" />
  15. <text class="share_text btn_text">分享</text>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>