MicroCommunityWeb/public/components/oa/workDetailCopy/workDetailCopy.html
2023-12-27 14:54:39 +08:00

41 lines
1.5 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="workDetailCopy"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="处理人" namespace="workDetailCopy"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="创建时间" namespace="workDetailCopy"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="状态" namespace="workDetailCopy"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="copy in workDetailCopyInfo.copys">
<td class="text-center">
{{copy.copyId}}
</td>
<td class="text-center">
{{copy.staffName}}
</td>
<td class="text-center">
{{copy.createTime}}
</td>
<td class="text-center">
{{copy.stateName}}
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="workDetailCopy" path="frame/paginationPlus"></vc:create>
</div>
</div>