recycle-view.wxml 501 B

12345678910
  1. <recycle-view batch="{{batchSetRecycleData}}" id="recycleId">
  2. <view slot="before" style="text-align: center">长列表前面的内容</view>
  3. <recycle-item wx:for="{{recycleList}}" wx:key="id" class="item">
  4. <view class="item-content">
  5. <text>{{item.title}}</text>
  6. <image src="{{item.image_url}}" mode="aspectFit" style="height: 100px; width: 240px"></image>
  7. </view>
  8. </recycle-item>
  9. <view slot="after" style="text-align: center">长列表后面的内容</view>
  10. </recycle-view>