<!--pages/searchCircle/searchCircle.wxml--> <view class='searchCircle'> <view class='top_searchCircle'> <image src='../../img/search.png'></image> <input placeholder='输入圈子名称' focus="true" value='{{keyword}}' bindinput="changeInput"></input> <view bindtap='searchCircle'>搜索</view> </view> <view class='listNull' wx:if="{{circleList==''}}"> <image src='../../img/null.png'></image> <view style='width:50px'>暂无内容</view> </view> <scroll-view scroll-y="true" style='bottom:10rpx;' bindscrolltolower='loadMore'> <view class='circleItem' bindtap='cicleDetails' wx:for="{{circleList}}" > <view class='circleIitle'><image src='{{item.front_image}}'></image>{{item.title}}</view> <view class='circleMemberCount'>({{item.member_count}}人)</view> <view class='circleJoin' bindtap='circleJoin' data-index="{{item.id}}">进圈</view> </view> </scroll-view> </view>