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.userRead.exampleId}}" wx:key="index">
- <image class="course_icon" src="{{item.userRead.iconImg}}" lazy-load="true" />
- <view class="course_info">
- <text class="course_title">{{item.userRead.title}}</text>
- <view class="course_btn_wrapper">
- <view class="collect course_btn" data-index="{{index}}" data-id="{{item.userRead.id}}" data-type="{{item.userRead.type}}" catchtap="courseCollectTap">
- <image class="collect_icon btn_icon" src="{{item.isFavorites ?'../../static/index/star_colored.png' :'../../static/index/star.png' }}" />
- <text class="collect_text btn_text">{{item.isFavorites? '收藏' : '收藏'}}</text>
- </view>
- <view class="share course_btn" catchtap="coursesOpenShare" data-author="{{item.user.nickName}}" data-index="{{index}}" data-id="{{item.userRead.id}}" data-avatar="{{item.user.avatar}}" data-uid="{{item.user.uid}}" data-icon="{{item.userRead.iconImg}}" data-title="{{item.userRead.title}}" data-type="{{item.userRead.type}}">
- <image class="share_icon btn_icon" src="../../static/index/share.png" />
- <text class="share_text btn_text">分享</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
|