45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
<!--packageH/circleCommunity/circleSearch/circleSearch.wxml-->
|
|
|
|
|
|
|
|
<view class="searchBox">
|
|
<view class="search">
|
|
<input type="text" model:value="{{searchText}}" bindconfirm="getListData" confirm-type="search" placeholder="圈子名称" />
|
|
<icon class="iconfont icon-all_filldelete"></icon>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="tablis" wx:if="{{listData.length>0 && networkLoading}}">
|
|
<view class="lis" wx:for="{{listData}}" wx:key="index" bindtap="gotoCircleDetails" data-id="{{item.id}}" >
|
|
<view class="left">
|
|
<view class="circleImg">
|
|
<image src="{{item.circle_img}}" ></image>
|
|
</view>
|
|
<view class="circle">
|
|
<view class="title">{{item.name}}</view>
|
|
<view class="detail">
|
|
<view class="tiezi">
|
|
<icon class="iconfont icon-fontclass-tiezi"></icon>
|
|
<text>帖子:{{item.invitation_count}}</text>
|
|
</view>
|
|
<view class="member">
|
|
<icon class="iconfont icon-fontclass-renshu"></icon>
|
|
<text>成员:{{item.member_count}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="right" wx:if="{{item.is_exist==0}}">
|
|
加入
|
|
</view>
|
|
<view class="right_one" wx:if="{{item.is_exist==1}}">已加入</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{listData.length==0 && networkLoading}}" class="blank">
|
|
<image src='https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/blank.png' mode='widthFix' />
|
|
</view>
|
|
|
|
|
|
|