MicroCommunityWeb/public/pages/common/auditCommunityManage/auditCommunityManage.html
2023-09-04 00:50:33 +08:00

74 lines
3.8 KiB
HTML

<div >
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="未审核小区" namespace="auditCommunityManage"></vc:i18n></span></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><span><vc:i18n name="小区" namespace="auditCommunityManage"></vc:i18n></span>ID</th>
<th><span><vc:i18n name="小区名称" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="小区地址" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="附近地标" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="城市编码" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="小区维度" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="小区经度" namespace="auditCommunityManage"></vc:i18n></span></th>
<th><span><vc:i18n name="状态" namespace="auditCommunityManage"></vc:i18n></span></th>
<th class="text-right"><span><vc:i18n name="操作" namespace="auditCommunityManage"></vc:i18n></span></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)"><span><vc:i18n name="审核" namespace="auditCommunityManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteCommunityModal(community)"><span><vc:i18n name="删除" namespace="auditCommunityManage"></vc:i18n></span>
</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>