MicroCommunityWeb/public/components/inspection/aInspectionRoutePoint/aInspectionRoutePoint.html
2025-03-04 01:58:32 +08:00

54 lines
2.5 KiB
HTML

<div class="margin-top">
<div class="text-right">
</div>
<div>
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="巡检点ID" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="巡检点名称" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="巡检点类型" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="巡检位置" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="开始时间" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="结束时间" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="排序" namespace="aInspectionRoutePoint"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="inspectionPoint in aInspectionRoutePointInfo.points">
<td class="text-center">{{inspectionPoint.inspectionId}}</td>
<td class="text-center">{{inspectionPoint.inspectionName}}</td>
<td class="text-center">{{inspectionPoint.pointTypeName}}</td>
<td class="text-center">{{inspectionPoint.pointObjName}}</td>
<td class="text-center">
{{inspectionPoint.pointStartTime ? inspectionPoint.pointStartTime : '-'}}
</td>
<td class="text-center">
{{inspectionPoint.pointEndTime ? inspectionPoint.pointEndTime : '-'}}
</td>
<td class="text-center">{{inspectionPoint.sortNumber ? inspectionPoint.sortNumber : '-'}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/paginationPlus" namespace="aInspectionRoutePoint"></vc:create>
</div>
</div>