MicroCommunityWeb/public/pages/common/enterCommunity/enterCommunity.html
2020-05-17 17:47:05 +08:00

88 lines
3.8 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>我的小区</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openEnterCommunityModal()">
<i class="fa fa-plus"></i>
入驻小区
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th data-hide="phone">省份</th>
<th data-hide="phone">市/州</th>
<th data-hide="phone">县/区</th>
<th data-hide="phone">小区名称</th>
<!-- <th data-hide="phone">小区地址</th> -->
<th>小区编码</th>
<th data-hide="phone">联系方式</th>
<!-- <th data-hide="phone">地标</th> -->
<!-- <th data-hide="phone,tablet" >城市编码</th> -->
<th data-hide="phone">状态</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="community in communityInfo.enterCommunityInfo">
<td>
{{community.provName}}
</td>
<td>
{{community.cityName}}
</td>
<td>
{{community.areaName}}
</td>
<td>
{{community.name}}
</td>
<!-- <td>
{{community.address}}
</td> -->
<td>
{{community.communityId}}
</td>
<td>
{{community.tel}}
</td>
<!-- <td>
{{community.nearbyLandmarks}}
</td> -->
<!-- <td>
{{community.cityCode}}
</td> -->
<td>
{{_showCommunityStatus(community.auditStatusCd)}}
</td>
<td class="text-right">
<div class="btn-group" v-if="community.auditStatusCd == '1100' && community.communityId != '7020181217000001'">
<button class="btn-white btn btn-xs" v-on:click="_openExitCommunityModel(community)">申请退出</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<vc:create path="common/storeEnterCommunity"></vc:create>
<vc:create path="common/storeExitCommunity"></vc:create>
</div>