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.
13 lines
526 B
13 lines
526 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">
|
|
<text class="community-name">{{item.partyGroupName}}</text>
|
|
<button bindtap="navigateToAss"data-join="{{item.isJoin}}" data-code="{{item.id}}" class="community-add" plain='true' hover-class="hover-btn"><image src="../../images/add.png"/></button>
|
|
</view>
|
|
</view>
|
|
</view>
|