21 lines
1000 B
Plaintext
21 lines
1000 B
Plaintext
<view class="join">
|
|
<view class="join-btn-box">社区机构入驻</view>
|
|
<view class="join-btn-box">单位/店铺入驻</view>
|
|
</view>
|
|
<view class="joined">
|
|
<view class="joined-tab">
|
|
<view class="joined-tab-box active">所在社区</view>
|
|
<view class="joined-tab-box">所在单位</view>
|
|
</view>
|
|
<view class="joined-list">
|
|
<view class="joined-box" wx:if="{{communityList.length>0}}" wx:for="{{communityList}}" wx:key="index">
|
|
<view class="joined-name">{{item.communityName}}</view>
|
|
<view bindtap="quitCommunity" class="quit border-btn" data-community="{{item.communityId}}" data-id="{{item.joinCommunityId}}">退出</view>
|
|
</view>
|
|
<view class="no-data" wx:if="{{communityList.length==0}}">
|
|
<image mode="widthFix" src="{{sourceUrl}}no-data.png"></image>
|
|
</view>
|
|
</view>
|
|
<view bindtap="selectCommunity" class="select-btn border-btn"> 选择加入社区居委会 / 村委会 </view>
|
|
</view>
|