| <!--nova-werun/components/circle/index.wxml--><nav type="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'></circle-card>        </block>        <view wx:if="{{noMoreItems}}" class="no-more">没有更多动态了</view>    </scroll-view>    <view class="publishbox" bindtap="gourl" data-url="../../pages/circle/send-circle/index">        <image src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241105/8qes51030838243.png?imageView2/1/w/200/h/200"></image>    </view></view>
 |