71 lines
3.8 KiB
HTML
71 lines
3.8 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='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='编号' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='设备名称' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='设备编码' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='用户名称' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='开门方式' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='手机号' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='用户身份证' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
|
|
<th class="text-center">
|
|
<vc:i18n name='相似度' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='开门状态' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='开门时间' namespace='aAccessControlDetailInout'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="accessControlInout in aAccessControlDetailInoutInfo.inouts">
|
|
<td class="text-center" style="white-space: nowrap;">
|
|
<img style="width: 60px; height: 60px;" class="border-radius" v-if="accessControlInout.facePath" v-bind:src="accessControlInout.facePath" v-on:click="_viewOwnerFace(accessControlInout.facePath)" />
|
|
<img style="width: 60px; height: 60px;" class="border-radius" v-else src="/img/noPhoto.jpg" />
|
|
</td>
|
|
<td class="text-center">{{accessControlInout.inoutId}}</td>
|
|
<td class="text-center">{{accessControlInout.machineName}}</td>
|
|
<td class="text-center">{{accessControlInout.machineCode}}</td>
|
|
<td class="text-center">{{accessControlInout.name}}</td>
|
|
<td class="text-center">{{accessControlInout.openTypeCd == '1000'?'人脸':'其他'}}</td>
|
|
<td class="text-center">{{accessControlInout.tel || '-'}}</td>
|
|
<td class="text-center">{{accessControlInout.idCard || '-'}}</td>
|
|
<td class="text-center">{{accessControlInout.similar}}</td>
|
|
<td class="text-center">{{accessControlInout.state == 'C'?'开门成功':'开门失败'}}</td>
|
|
<td class="text-center">{{accessControlInout.createTime}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="aAccessControlDetailInout" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |