regularCourse.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="regularCourse {{isList?'is_list':''}}">
  2. <!-- 头部 -->
  3. <view class="ys-font12 head">
  4. <text class="name">{{isTitle}}</text>
  5. <text class="tag">奖励</text>
  6. <text class="color96 credit">{{obj.credit}}学分 | </text>
  7. <text class="color96 credit" decode="{{true}}">&nbsp;{{obj.scholarships}}</text>
  8. <image class="jb-icon" src="https://yuesuo.yueguanjia.com/MiniProgram/images/jinbi.png" />
  9. <text class="type {{obj.status!='已完成'?'':'type_end'}}">{{obj.status}}</text>
  10. </view>
  11. <!-- 中部 -->
  12. <view class="flex_between content" data-="{{obj.c_code}}" data-id="{{obj.id}}" bindtap="goDetail">
  13. <view class="left">
  14. <view class="one">
  15. <text wx:if="{{obj.status!='已完成'}}" class="cricel"></text>
  16. <text class="ys-font16 title">{{obj.c_name}}</text>
  17. </view>
  18. <view class="color96 two">{{obj.c_desc}}</view>
  19. <text class="color96 people">{{obj.pcount}}人已学</text>
  20. </view>
  21. <image class="rightImg" lazy-load src="{{obj.img_list_href}}"></image>
  22. </view>
  23. <!-- 底部 -->
  24. <view wx:if="{{showBot}}" class="flex_between bot" bindtap="lookMore">
  25. <text class="color96">更多</text>
  26. <view class="imglistright">
  27. <text class="color96">查看往期</text>
  28. <image src="https://yuesuo.yueguanjia.com/MiniProgram/images/littlegrey.png"></image>
  29. </view>
  30. </view>
  31. </view>