Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/property/machineDetailRideLog/machineDetailRideLog.html
2025-12-09 20:22:03 +08:00

74 lines
3.7 KiB
HTML

<div class="margin-top">
<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='人脸' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='编号' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='电梯名称' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='门禁名称' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='门禁编号' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='乘坐类型' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='用户名称' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='手机号' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='人员类型' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='房号' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='楼层' namespace='liftRideLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='乘坐时间' namespace='liftRideLog'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="liftRideLog in machineDetailRideLogInfo.liftRideLogs">
<td class="text-center" style="white-space: nowrap;">
<img style="width: 60px; height: 60px;" class="border-radius" v-if="liftRideLog.facePath"
v-bind:src="liftRideLog.facePath" v-on:click="_viewOwnerFace(liftRideLog.facePath)" />
<img style="width: 60px; height: 60px;" class="border-radius" v-else src="/img/noPhoto.jpg" />
</td>
<td class="text-center">{{liftRideLog.logId}}</td>
<td class="text-center">{{liftRideLog.machineName}}</td>
<td class="text-center">{{liftRideLog.acMachineName}}</td>
<td class="text-center">{{liftRideLog.acMachineCode}}</td>
<td class="text-center">{{liftRideLog.rideType}}</td>
<td class="text-center">{{liftRideLog.name}}</td>
<td class="text-center">{{liftRideLog.tel}}</td>
<td class="text-center">{{liftRideLog.personType}}</td>
<td class="text-center">{{liftRideLog.roomName}}</td>
<td class="text-center">{{liftRideLog.layer}}</td>
<td class="text-center">{{liftRideLog.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="machineDetailRideLog" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>