mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 16:19:44 +08:00
58 lines
2.2 KiB
HTML
58 lines
2.2 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="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="标识" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="完成小时" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="周期" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="月" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="日" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
<th data-hide="phone" class="text-center">
|
|
<vc:i18n name="周" namespace="aWorkDetailCycle"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="cycle in aWorkDetailCycleInfo.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>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="text-right">
|
|
<vc:create namespace="aWorkDetailCycle" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div> |