MicroCommunityWeb/public/components/oa/workDetailCycle/workDetailCycle.html

65 lines
2.3 KiB
HTML

<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="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="标识" namespace="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="完成小时" namespace="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="周期" namespace="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="月" namespace="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="日" namespace="workDetailCycle"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="周" namespace="workDetailCycle"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="cycle in workDetailCycleInfo.cycles">
<td class="text-center">
{{cycle.staffName}}
</td>
<td class="text-center">
{{cycle.workCycle == '1001'?'一次性工单':'周期性工单'}}
</td>
<td class="text-center">
{{cycle.hours}}
</td>
<td class="text-center">
{{cycle.period == '2020022'?'月/天':'按周'}}
</td>
<td class="text-center">
{{cycle.periodMonth || '-'}}
</td>
<td class="text-center">
{{cycle.periodDay || '-'}}
</td>
<td class="text-center">
{{cycle.periodWorkday || '-'}}
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="workDetailCycle" path="frame/paginationPlus"></vc:create>
</div>
</div>