demandCourses.wxml 925 B

123456789101112131415161718
  1. <view class="xczs">
  2. <view class="zb1" wx:for="{{lbArr}}" wx:for-index="idx" wx:for-item="item" bindtap="turnDetails" id="{{idx}}" wx:key="idx">
  3. <view style="position:relative">
  4. <image src='{{item.courseImg}}' mode='aspectFill' class="show1"></image>
  5. <view class="grayblock">
  6. <view class="show_text">{{item.courseName}}</view>
  7. <view class="viedoxx">
  8. <image src='/images/clock.png' mode='aspectFill' class="qb"></image>
  9. <view style="color:#e82315;font-size:25rpx;font-weight:500;float:left">{{item.time}}</view>
  10. <view style="color:#848585;font-size:22rpx;float:right;margin-right:20rpx">{{item.playTimes}}人看过</view>
  11. </view>
  12. </view>
  13. </view>
  14. <!-- <view class="btn {{item.videoId==null?'getinroom':'nogetinroom'}}">
  15. <button bindtap="goIn" data-item="{{item}}" type="primary" plain="true" style="width:128rpx">进入课堂</button>
  16. </view> -->
  17. </view>
  18. </view>