You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
595 B
15 lines
595 B
<view wx:for="{{unionBuildlist}}"
|
|
wx:for-index="index"
|
|
wx:for-item="item"
|
|
wx:key="index"
|
|
bindtap="toDetail"
|
|
data-id="{{item.id}}"
|
|
class="list">
|
|
<view class="name">{{item.title}}</view>
|
|
<view class="any">单位名称:{{item.unitName}}</view>
|
|
<view class="any">服务人数:{{item.peopleCount}}</view>
|
|
<view class="any">活动时间:{{item.activityTime}}</view>
|
|
</view>
|
|
<no-data isShow='{{isShowNoData}}'></no-data>
|
|
<!-- 加载更多提示 -->
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|