123456789101112131415161718192021 |
- <!-- <wxs src="../../pages/commonWxs/format.wxs" module="format" /> -->
- <template name="courses">
- <view class="courses_container">
- <view class="course_item" bindtap="goToReading" wx:for="{{coursesData}}" data-id="{{item.lesson.id}}" wx:key="index">
- <image class="course_icon" src="{{item.lesson.iconImg}}" lazy-load="true" />
- <view class="course_info">
- <text class="course_title">{{item.lesson.title}}</text>
- <view class="course_btn">
- <view class="collect course_btn">
- <image class="collect_icon btn_icon" src="../../static/image/collect.png" />
- <text class="collect_text btn_text">收藏</text>
- </view>
- <view class="share course_btn">
- <image class="share_icon btn_icon" src="../../static/image/share.png" />
- <text class="share_text btn_text">分享</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
|