锦水居民端小程序
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.

19 lines
623 B

<view class="community-list">
<view class="community-item"
wx:for="{{associationList}}"
wx:for-index="index"
wx:for-item="item"
wx:key="index">
<image src="{{item.partyGroupAvatar}}"/>
<view class="cover-image">
<view class="community-name">
<text>{{item.partyGroupName}}</text>
</view>
<view class="btn-container">
<button bindtap="navigateToAss"data-join="{{item.isJoin}}" data-code="{{item.id}}" class="community-add" plain='true' hover-class="hover-btn">
<view>{{item.groupName}}</view>
</button>
</view>
</view>
</view>
</view>