Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/community/aRoomDetailHisOwner/aRoomDetailHisOwner.html
2025-12-09 20:22:03 +08:00

50 lines
2.2 KiB
HTML

<div>
<div>
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="业主名称" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="业主电话" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="开始时间" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="结束时间" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="创建时间" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="aRoomDetailHisOwner"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="owner in aRoomDetailHisOwnerInfo.owners">
<td class="text-center">{{owner.name}}</td>
<td class="text-center">{{owner.link}}</td>
<td class="text-center">{{owner.startTime}}</td>
<td class="text-center">{{owner.endTime}}</td>
<td class="text-center">{{owner.createTime}}</td>
<td class="text-center">{{owner.statusCd == '0'?'在用':'失效'}}</td>
</tr>
</tbody>
<tr>
<td colspan="6">
<ul class="pagination float-right"></ul>
</td>
</tr>
</table>
<div class="row">
<div class="col-sm-12 float-right">
<vc:create namespace="aRoomDetailHisOwner" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
<!-- <vc:create path="property/editMachineTranslate"></vc:create> -->
</div>