62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
<style>
|
|
/* Custom styles for this template */
|
|
.sub-header {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.group-border-left {
|
|
border-left: 1px solid #000 !important;
|
|
}
|
|
|
|
/* Override table font size for this dense report */
|
|
th, td {
|
|
font-size: 11px;
|
|
padding: 5px 2px;
|
|
}
|
|
|
|
th {
|
|
background-color: #f0f0f0;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
|
|
<div class="header">
|
|
<h1>车辆三检记录表</h1>
|
|
</div>
|
|
<div class="sub-header">打印时间:$!printTime</div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th width="40">序号</th>
|
|
<th width="140">三检记录编号</th>
|
|
<th width="80">车牌号</th>
|
|
<th width="70">检查人</th>
|
|
<th width="90">开始时间</th>
|
|
<th width="90">结束时间</th>
|
|
<th width="90">出车前地点</th>
|
|
<th width="90">行车中地点</th>
|
|
<th width="90">收车后地点</th>
|
|
<th width="70">审核人</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
#foreach($item in $list)
|
|
<tr>
|
|
<td>$foreach.count</td>
|
|
<td>$!item.inspectNo</td>
|
|
<td>$!item.plateNumber</td>
|
|
<td>$!item.inspectorName</td>
|
|
<td>$!item.startTime</td>
|
|
<td>$!item.endTime</td>
|
|
<td>$!item.outInspectLocation</td>
|
|
<td>$!item.drivingInspectLocation</td>
|
|
<td>$!item.backInspectLocation</td>
|
|
<td>$!item.auditorName</td>
|
|
</tr>
|
|
#end
|
|
</tbody>
|
|
</table>
|