23 lines
956 B
Plaintext
23 lines
956 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:for="{{communityList}}" wx:key="index" wx:if="{{communityList.length > 0}}">
|
||
|
<view class="joined-name">{{item.communityName}}</view>
|
||
|
<view class="quit border-btn" bindtap="quitCommunity" data-id="{{item.joinCommunityId}}" data-community="{{item.communityId}}">退出</view>
|
||
|
</view>
|
||
|
<view class="no-data" wx:if="{{communityList.length == 0}}">
|
||
|
<image src="{{sourceUrl}}no-data.png" mode="widthFix"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="select-btn border-btn" bindtap="selectCommunity">
|
||
|
选择加入社区居委会 / 村委会
|
||
|
</view>
|
||
|
</view>
|