classPanel.wxml 1.2 KB

123456789101112131415161718192021
  1. <view class="container">
  2. <edu-loadmore isEmpty="{{rows.length == 0}}" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
  3. isComplete="{{noMore}}">
  4. <view class="card" wx:for="{{rows}}" wx:key="index" tagTxt="{{tagTxt}}" tag-bg="{{}}" bindtap="toDetail"
  5. data-item="{{item}}">
  6. <view class="card-title">{{item.itemName || ''}}</view>
  7. <view class="{{tagBg}} tag">{{tagTxt}}</view>
  8. <edu-txt src='bookmark' text="{{item.teamName||''}}" iconColor="#C7CBD7" custom-class="mt15"></edu-txt>
  9. <edu-txt src='medal' text="主办方:{{item.organizerName||''}}" iconColor="#C7CBD7"
  10. custom-class="mt15"></edu-txt>
  11. <edu-txt src='award' text="承办方:{{item.undertakerName||''}}" iconColor="#C7CBD7"
  12. custom-class="mt15"></edu-txt>
  13. <edu-txt src='clock' text="{{item.teamStart||''}} — {{item.teamEnd||''}}" iconColor="#C7CBD7"
  14. custom-class="mt15"></edu-txt>
  15. <edu-txt src='manager' text="{{item.stuNum||'0'}}人参与培训" iconColor="#C7CBD7" custom-class="mt15"></edu-txt>
  16. </view>
  17. </edu-loadmore>
  18. </view>