practicalCourse.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <view class="practicalCourse {{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=='待完成'||obj.status=='已报名'?'':'type_end'}}">{{obj.status}}</text>
  10. </view>
  11. <view data-code="{{obj.c_code}}" bindtap="signUp">
  12. <image class="isimg" src="{{obj.img_href}}" lazy-load></image>
  13. <view class="flex_between titleView">
  14. <text class="ys-font16 title">{{obj.c_name}}</text>
  15. <text class="color96 people">{{obj.pcount}}人已报名</text>
  16. </view>
  17. <view class="flex_between desc">
  18. <view class="descInfo">
  19. <view class="color96 time">时间:{{obj.startdate}}</view>
  20. <view class="color96 address">地址:{{obj.address}}</view>
  21. </view>
  22. <view class="ys-font16 signUp {{obj.learningStatus=='立即报名'||obj.learningStatus=='查看报名'?'':'signUp_dis'}}">{{obj.learningStatus}}</view>
  23. </view>
  24. </view>
  25. <!-- 底部 -->
  26. <view wx:if="{{showBot}}" class="flex_between bot" bindtap="lookBack">
  27. <text class="color96">更多</text>
  28. <view class="imglistright">
  29. <text class="color96">查看往期</text>
  30. <image src="https://yuesuo.yueguanjia.com/MiniProgram/images/littlegrey.png"></image>
  31. </view>
  32. </view>
  33. </view>