- <template name="materials">
- <scroll-view scroll-y="true">
- <view id="materials" >
- <view wx:if="{{!materials.length}}" class="no-info">暂无学习资料</view>
- <view wx:for="{{materials}}" wx:key="{{index}}" class="{{index === 0 ? 'material-wrapper first' : 'material-wrapper'}}" >
- <text class="name">{{item.courseware.name}}</text>
- <view class="btns">
- <text class="btn view" data-url="{{item.courseware.playUrl}}" bindtap="viewMaterial"></text>
- <text class="{{item.isFavourite ? 'collected btn' : 'btn collect'}}" data-id="{{item.courseware.id}}" bindtap="collectMaterial"></text>
- </view>
- </view>
- </view>
- </scroll-view>
- </template>
|