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

55 lines
2.5 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='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='设备名称' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='设备编码' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='日志动作' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='用户ID' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='用户名称' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='下发时间' namespace='aAccessControlDetailLog'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="log in aAccessControlDetailLogInfo.logs">
<td class="text-center">{{log.logId}}</td>
<td class="text-center">{{log.machineName}}</td>
<td class="text-center">{{log.machineCode}}</td>
<td class="text-center">{{log.logAction}}</td>
<td class="text-center">{{log.userId}}</td>
<td class="text-center">{{log.userName}}</td>
<td class="text-center">{{log.stateName}}</td>
<td class="text-center">{{log.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="aAccessControlDetailLog" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>