锦水居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.1 KiB

6 years ago
<view class="association">
<view class="header">
<image src="/images/association/ic_dang@3x.png" />
<text>{{gridName}}</text>
</view>
<view class="introduce" wx:if="{{userInfo.partyFlag == 1}}">
<image class="bgimage" src="/images/association/by_chuangjianqun@3x.png" />
<view class="content">
<view>
<view>加入你喜欢的社群进行交流吧</view>
<view>或创建属于自己的社群,邀请好友</view>
</view>
<image bindtap="navigateToCreate" src="/images/association/ic_chuangjianshequn@3x.png" />
</view>
</view>
<view class="tab">
<view class="content">
<view
class="my-association"
bindtap="associationChange"
data-type="my-association"
hover-class="hover-view"
hover-stay-time="{{200}}">
<image src="/images/association/ic_wodequn@3x.png"/>
<view>
<view>我的群</view>
<text>我的交流园地</text>
</view>
</view>
<view
class="command-association"
bindtap="associationChange"
data-type="command-association"
hover-class="hover-view"
hover-stay-time="{{200}}">
<image src="/images/association/ic_tuijianqun@3x.png"/>
<view>
<view>推荐群</view>
<text>本网格全部群</text>
</view>
</view>
</view>
<view class="anination-tab">
<view class="content">
<view class="{{associationType === 'command-association' ? 'right': ''}}"></view>
</view>
</view>
</view>
<my-association-list
myAssociationList="{{myAssociationList}}"
noDataVisible="{{noDataVisible}}"
wx:if="{{associationType === 'my-association'}}">
</my-association-list>
<command-association-list
noDataVisible="{{noDataVisible}}"
commandAssociationList="{{commandAssociationList}}"
wx:if="{{associationType === 'command-association'}}">
</command-association-list>
<view style="display: {{nomoreVisible ? 'flex' : 'none'}}" class="nomore-tip">没有更多了~</view>
</view>