MicroCommunityWeb/public/components/inspection/pointPlan/pointPlan.html
2024-06-18 15:46:10 +08:00

75 lines
3.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>
<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>
<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>
<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="plan in pointPlanInfo.plans">
<!-- <td class="text-center">{{inspectionPlan.inspectionPlanId}}</td> -->
<td class="text-center">{{plan.inspectionPlanName}}</td>
<td class="text-center">{{plan.inspectionRouteName}}</td>
<td class="text-center">{{plan.inspectionPlanPeriodName}}</td>
<td class="text-center">{{plan.signTypeName}}</td>
<td class="text-center">{{plan.startDate}}~{{plan.endDate}}</td>
<td class="text-center">{{plan.startTime}}~{{plan.endTime}}</td>
<td class="text-center">{{plan.beforeTime}}</td>
<td class="text-center">{{plan.createUserName}}</td>
<td class="text-center">{{plan.createTime}}</td>
<td class="text-center">
<div v-for="(_staff,i) in plan.staffs">{{_staff.staffName}}</div>
</td>
<td class="text-center">{{plan.stateName}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="pointPlan" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>