62 lines
2.2 KiB
HTML
62 lines
2.2 KiB
HTML
<div>
|
|
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>我的小区</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button class="btn-white btn btn-xs" v-on:click="_to3dCommunity()">
|
|
<vc:i18n name='可视化'></vc:i18n>
|
|
</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>小区编码</th>
|
|
<th data-hide="phone">地址</th>
|
|
|
|
<th data-hide="phone">联系方式</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="community in communityInfo.enterCommunityInfo">
|
|
<td>
|
|
{{community.name}}
|
|
</td>
|
|
<td>
|
|
{{community.communityId}}
|
|
</td>
|
|
<td>
|
|
{{community.address}}
|
|
</td>
|
|
|
|
<td>
|
|
{{community.tel}}
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<div class="row margin-top-xs">
|
|
<div class="col-sm-9">
|
|
<div>
|
|
温馨提示:小区和物业公司管理,请联系管理员或者登录运营账号管理;
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3 float-right">
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |