index.wxml 625 B

12345678910
  1. <!--nova-werun/pages/my-circle/index.wxml-->
  2. <nav type="back" title="我的动态" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
  3. <view class="all" style="height: {{contentHeight}}rpx;">
  4. <scroll-view class="trends" scroll-y="true" bindscrolltolower="loadMoreData" style="height: {{contentHeight}}rpx;">
  5. <block wx:for="{{cardList}}" wx:key="{{item.objectId}}">
  6. <circle-card objectId='{{item.objectId}}' type='surface' permission='delete'></circle-card>
  7. </block>
  8. <view wx:if="{{noMoreItems}}" class="no-more">没有更多动态了</view>
  9. </scroll-view>
  10. </view>