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

56 lines
3.1 KiB
HTML

<div id="staffAttendanceDetailModel" class="modal fade" role="dialog" aria-labelledby="staffAttendanceDetailModel"
aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="chooseFloorModelLabel">
<span><vc:i18n name="考勤明细" namespace="staffAttendanceDetail"></vc:i18n></span>
</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class=" row">
<div class="col-lg-12">
<div class="ibox ">
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="人脸" namespace="staffAttendanceDetail"></vc:i18n></span>
</th>
<th class="text-center">
<span>
<vc:i18n name="员工名称" namespace="staffAttendanceDetail"></vc:i18n>
</span>
</th>
<th class="text-center">
<span>
<vc:i18n name="考勤时间" namespace="staffAttendanceDetail"></vc:i18n>
</span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="detail in staffAttendanceDetailInfo.details">
<td class="text-center" style="white-space: nowrap;">
<img style="width: 60px; height: 60px;" class="border-radius"
v-if="detail.facePath" v-bind:src="detail.facePath"/>
<img style="width: 60px; height: 60px;" class="border-radius" v-else
src="/img/noPhoto.jpg"/>
</td>
<td class="text-center">{{detail.staffName}}</td>
<td class="text-center">{{detail.clockTime}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>