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

59 lines
2.7 KiB
HTML

<div class="margin-top">
<div class="">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="单号" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="物品" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="申请人" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作人" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="申请时间" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="状态" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="领用方式" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="操作" namespace="aStaffDetailItemOutApply"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="itemOut in aStaffDetailItemOutApplyInfo.itemOuts">
<td class="text-center">{{itemOut.applyOrderId}}</td>
<td class="text-center">{{itemOut.resourceNames}}</td>
<td class="text-center">{{itemOut.userName}}</td>
<td class="text-center">{{itemOut.createUserName}}</td>
<td class="text-center">{{itemOut.createTime}}</td>
<td class="text-center">{{itemOut.stateName}}</td>
<td class="text-center">{{itemOut.warehousingWay == 10000 ? '直接出库' : '审核出库'}}</td>
<td class="text-center">
<!-- <div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDetailItemOutModel(itemOut)">
<vc:i18n name="查看" namespace="itemOutManage"></vc:i18n>
</button>
</div> -->
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<vc:create namespace="aStaffDetailItemOutApply" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>