74 lines
3.8 KiB
HTML
74 lines
3.8 KiB
HTML
<div class="margin-top">
|
|
<div class="text-right">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddInspectionRoutePointModal()">
|
|
<vc:i18n name="添加" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</button>
|
|
</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="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="巡检点名称" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="巡检点类型" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="巡检位置" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="开始时间" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="结束时间" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="排序" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="操作" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="inspectionPoint in inspectionRoutePointInfo.inspectionPoints">
|
|
<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>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditInspectionRoutePointModel(inspectionPoint)">
|
|
<vc:i18n name="修改" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</button>
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteInspectionRoutePointModel(inspectionPoint)">
|
|
<vc:i18n name="删除" namespace="inspectionRoutePoint"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/paginationPlus" namespace="inspectionRoutePoint"></vc:create>
|
|
|
|
</div>
|
|
<vc:create path="property/chooseInspectionRoutePoint" emitListener="inspectionRoutePoint"
|
|
emitFunction="listInspectionPoint">
|
|
</vc:create>
|
|
<vc:create path="property/deleteInspectionRoutePoint"></vc:create>
|
|
<vc:create path="property/editInspectionRoutePoint"></vc:create>
|
|
</div> |