mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
81 lines
4.0 KiB
HTML
81 lines
4.0 KiB
HTML
<div class="">
|
|
<div class="row ">
|
|
<div class="col-lg-12 text-right">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<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="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品类型" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品名称" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品规格" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="固定物品" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="转赠人" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="转赠对象" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="原有库存" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="转赠数量" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="创建时间" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="备注" namespace="resourceDetailAllocationUser"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="allocationUserStorehouse in resourceDetailAllocationUserInfo.allocationUserStorehouses">
|
|
<td class="text-center">{{allocationUserStorehouse.ausId}}</td>
|
|
<td class="text-center">
|
|
{{allocationUserStorehouse.parentRstName}} > {{allocationUserStorehouse.rstName}}
|
|
</td>
|
|
<td class="text-center">{{allocationUserStorehouse.resName}}</td>
|
|
<td class="text-center">
|
|
{{allocationUserStorehouse.specName ? allocationUserStorehouse.specName : '-'}}
|
|
</td>
|
|
<td class="text-center">{{allocationUserStorehouse.isFixedName}}</td>
|
|
<td class="text-center">{{allocationUserStorehouse.startUserName}}</td>
|
|
<td class="text-center">{{allocationUserStorehouse.acceptUserName}}</td>
|
|
<td class="text-center">
|
|
{{allocationUserStorehouse.stock}}{{allocationUserStorehouse.unitCodeName}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{allocationUserStorehouse.giveQuantity}}{{allocationUserStorehouse.miniUnitCodeName}}
|
|
</td>
|
|
<td class="text-center">{{allocationUserStorehouse.createTime}}</td>
|
|
<td class="text-center">{{allocationUserStorehouse.remark}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="resourceDetailAllocationUser" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |