MicroCommunityWeb/public/components/property/todayAttendanceDetail/todayAttendanceDetail.html
2022-04-22 00:24:24 +08:00

50 lines
3.6 KiB
HTML
Executable File

<div id="todayAttendanceDetailModel" class="modal fade" tabindex="-1" role="dialog"
aria-labelledby="todayAttendanceDetailModelLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="todayAttendanceDetailModelLabel"><vc:i18n name="考勤详情" namespace="todayAttendanceDetail"></vc:i18n></h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')vc.i18n(' ','todayAttendanceDetail')<divvc.i18n(' ','todayAttendanceDetail')class="vc.i18n(' ','todayAttendanceDetail')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"><vc:i18n name="名称" namespace="todayAttendanceDetail"></vc:i18n></th>
<th class="text-center"><vc:i18n name="状态" namespace="todayAttendanceDetail"></vc:i18n></th>
<th class="text-center"><vc:i18n name="考勤时间" namespace="todayAttendanceDetail"></vc:i18n></th>
<th class="text-center"><vc:i18n name="打卡时间" namespace="todayAttendanceDetail"></vc:i18n></th>
<th class="text-center"><vc:i18n name="抓拍" namespace="todayAttendanceDetail"></vc:i18n></th>
</tr>
</thead>
<tbody>
<tr v-for="detail in todayAttendanceDetailInfo.attendanceClassesTaskDetails">
<td class="text-center">{{detail.specName}}</td>
<td class="text-center">{{detail.state}}</td>
<td class="text-center">{{detail.value}}</td>
<td class="text-center">{{detail.checkTime}}</td>
<td class="text-right ">
<span v-for="_photo in detail.photos">
<img style="width: 60px; height: 60px;" v-bind:src="_photo.url"
v-on:click="openFile(_photo)">
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="common/viewImage"></vc:create>
</div>