优化考情页面

This commit is contained in:
Your Name 2023-02-26 02:34:09 +08:00
parent 3ea748dc29
commit 76b987408f

View File

@ -17,6 +17,9 @@
<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>
@ -27,6 +30,10 @@
</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="attendance.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>