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

28 lines
1.0 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="workDetailFile"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="附件" namespace="workDetailFile"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="event in workDetailFileInfo.files" v-if="event.fileType != 'S'">
<td class="text-center">
{{event.staffName}}
</td>
<td class="text-center">
<a :href="workDetailInfo.pathUrl">下载</a>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="workDetailFile" path="frame/paginationPlus"></vc:create>
</div>
</div>