MicroCommunityWeb/public/pages/property/remainingParkingSpace/remainingParkingSpace.html
2021-04-23 10:14:20 +08:00

51 lines
2.2 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 class="text-center">总车位数</th>
<th data-hide="phone" class="text-center">剩余车位数</th>
<th data-hide="phone" class="text-center">采集时间</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">
{{remainingParkingSpaceInfo.total}}位
</td>
<td class="text-center">
{{remainingParkingSpaceInfo.freeCount}}位
</td>
<td class="text-center">
{{remainingParkingSpaceInfo.createTime}}
</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_freshRemainingParkingSpace()">刷新
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
</div>