MicroCommunityWeb/public/pages/common/auditCommunityManage/auditCommunityManage.html

74 lines
3.0 KiB
HTML
Executable File

<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;">
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th>小区ID</th>
<th>小区名称</th>
<th>小区地址</th>
<th>附近地标</th>
<th>城市编码</th>
<th>小区维度</th>
<th>小区经度</th>
<th>状态</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="community in auditCommunityManageInfo.communitys">
<td>{{community.communityId}}</td>
<td>{{community.name}}</td>
<td>{{community.address}}</td>
<td>{{community.nearbyLandmarks}}</td>
<td>{{community.cityCode}}</td>
<td>{{community.mapX}}</td>
<td>{{community.mapY}}</td>
<td>{{community.stateName}}</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openAuditCommunityModal(community)">审核
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteCommunityModal(community)">删除
</button>
</div>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="9">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="common/deleteCommunity"></vc:create>
<vc:create path="common/audit"
callBackListener="auditCommunityManage"
callBackFunction="notifyAuditInfo"
></vc:create>
</div>