Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/inspection/inspectionPlanDetailStaff/inspectionPlanDetailStaff.html
2025-12-09 20:22:03 +08:00

40 lines
1.5 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
<div class="col-lg-8 text-right">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="巡检人员" namespace="inspectionPlan"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="开始时间" namespace="inspectionPlan"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="结束时间" namespace="inspectionPlan"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="staff in inspectionPlanDetailStaffInfo.staffs">
<!-- <td class="text-center">{{inspectionPlan.inspectionPlanId}}</td> -->
<td class="text-center">{{staff.staffName}}</td>
<td class="text-center">{{staff.startTime}}</td>
<td class="text-center">{{staff.endTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="inspectionPlanDetailStaff" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>