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.
|
|
|
<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.relationCommunity}}社群</view>
|
|
|
|
</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|