78 lines
3.7 KiB
HTML
78 lines
3.7 KiB
HTML
<div class="margin-top">
|
|
<!-- <div class="row margin-top-lg">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<input v-model="roomDetailLockInfo.roomNum" type="text" :placeholder="vc.i18n('请填写房屋编号','roomDetailLock')"
|
|
class="form-control">
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-right-xl">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_qureyRoomDetailAccessControl()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
</div>
|
|
|
|
<div class="col-lg-8 text-right">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-if="vc.hasPrivilege('502023021978930012')" v-on:click="_openAddOwnerRoom()">
|
|
<vc:i18n name="交房" namespace="simplifyRoomFee"></vc:i18n>
|
|
</button>
|
|
|
|
</div>
|
|
</div> -->
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name='门锁ID' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='门锁名称' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='门锁编号' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='房屋名称' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='剩余电量(百分比)' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='门禁厂家' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='在线状态' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='心跳时间' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='创建时间' namespace='roomDetailLock'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="lockMachine in roomDetailLockInfo.lockMachines">
|
|
<td class="text-center">{{lockMachine.machineId}}</td>
|
|
<td class="text-center">{{lockMachine.machineName}}</td>
|
|
<td class="text-center">{{lockMachine.machineCode}}</td>
|
|
<td class="text-center">{{lockMachine.roomName}}</td>
|
|
<td class="text-center">{{lockMachine.charge}}%</td>
|
|
<td class="text-center">{{lockMachine.factoryName}}</td>
|
|
<td class="text-center">{{lockMachine.stateName}}</td>
|
|
<td class="text-center">{{lockMachine.heartbeatTime}}</td>
|
|
<td class="text-center">{{lockMachine.createTime}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="roomDetailLock" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |