Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/work/repairDetailEvent/repairDetailEvent.html
2025-12-09 20:22:03 +08:00

39 lines
1.6 KiB
HTML

<div>
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-left-xl">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th scope="col" class="text-center">
<vc:i18n name="事件类型" namespace="repairDetailEvent"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="员工" namespace="repairDetailEvent"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="事件说明" namespace="repairDetailEvent"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="创建时间" namespace="repairDetailEvent"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in repairDetailEventInfo.users">
<td class="text-center">{{item.eventTypeName}}</td>
<td class="text-center">{{item.staffName}}</td>
<td class="text-center">{{item.remark}}</td>
<td class="text-center">{{item.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="text-right">
<vc:create namespace="repairDetailEvent" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>