socialEvent.wxml 824 Bytes
<!--pages/socialEvent/socialEvent.wxml-->
<view class='socialEvent'>
  <view class='listVolunteers'>
    <scroll-view  scroll-y="true" style='height:1100rpx;bottom:10rpx;' class="listPublicWelfare" bindscrolltolower='loadMore'>
      <view class='activelist' bindtap='socialEventDetail' wx:for="{{socialEventEventList}}"  data-index='{{item.id}}'>
        <view class='left_listVolunteers'>
          <image src='{{item.front_image}}'></image>
        </view>
        <view class='right_listVolunteers'>
          <text>{{item.class_title}}{{item.title}}</text>
          <view>
            <text>发布人:{{item.author}}\n</text>
            <text>发布时间:{{item.publish_time}}\n</text>
          </view>
        </view>
        <text class='activeLine'></text>
      </view>
    </scroll-view>
  </view>
</view>