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