64 lines
3.1 KiB
HTML
64 lines
3.1 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="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="申请人" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="操作人" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="申请时间" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="状态" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="领用方式" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="操作" namespace="staffDetailItemOutApply"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="itemOut in staffDetailItemOutApplyInfo.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 ? vc.i18n('直接出库','allocationStorehouseDetailed'):vc.i18n('审核出库','allocationStorehouseDetailed')}}</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="staffDetailItemOutApply"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" v-if="itemOut.warehousingWay != 10000">
|
|
<button class="btn-white btn btn-xs" v-on:click="_openRunWorkflowImage(itemOut)">
|
|
<vc:i18n name="流程图" namespace="staffDetailItemOutApply"></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="staffDetailItemOutApply" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |