123456789101112131415161718192021 |
- <view class="container">
- <edu-loadmore isEmpty="{{rows.length == 0}}" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
- isComplete="{{noMore}}">
- <view class="card" wx:for="{{rows}}" wx:key="index" tagTxt="{{tagTxt}}" tag-bg="{{}}" bindtap="toDetail"
- data-item="{{item}}">
- <view class="card-title">{{item.itemName || ''}}</view>
- <view class="{{tagBg}} tag">{{tagTxt}}</view>
- <edu-txt src='bookmark' text="{{item.teamName||''}}" iconColor="#C7CBD7" custom-class="mt15"></edu-txt>
- <edu-txt src='medal' text="主办方:{{item.organizerName||''}}" iconColor="#C7CBD7"
- custom-class="mt15"></edu-txt>
- <edu-txt src='award' text="承办方:{{item.undertakerName||''}}" iconColor="#C7CBD7"
- custom-class="mt15"></edu-txt>
- <edu-txt src='clock' text="{{item.teamStart||''}} — {{item.teamEnd||''}}" iconColor="#C7CBD7"
- custom-class="mt15"></edu-txt>
- <edu-txt src='manager' text="{{item.stuNum||'0'}}人参与培训" iconColor="#C7CBD7" custom-class="mt15"></edu-txt>
- </view>
- </edu-loadmore>
- </view>
|