MicroCommunityWeb/public/pages/common/resourceOutManage/resourceOutManage.html

78 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="单号" namespace="resourceOutManage"></vc:i18n></span>{{resourceOutManageInfo.applyOrderId}}
</h5>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="物品类型" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="物品名称" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="物品规格" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="物品编码" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="物品库存" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="申请数量" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="发放数量" namespace="resourceOutManage"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="备注" namespace="resourceOutManage"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="resourceOut in resourceOutManageInfo.purchaseApplyDetailVo">
<td class="text-center">{{resourceOut.rstName ? resourceOut.rstName : '-'}}</td>
<td class="text-center">{{resourceOut.resName}}</td>
<td class="text-center">{{resourceOut.specName ? resourceOut.specName : '-'}}</td>
<td class="text-center">{{resourceOut.resCode}}</td>
<td class="text-center">{{resourceOut.stock}}</td>
<td class="text-center">{{resourceOut.quantity}}</td>
<td class="text-center">
<input v-model.trim="resourceOut.purchaseQuantity" type="number"
:placeholder="vc.i18n('必填,请填写发放数量','resourceOutManage')" class="form-control">
</td>
<td class="text-center">
<input v-model.trim="resourceOut.purchaseRemark" type="text"
:placeholder="vc.i18n('可填,请填写备注','resourceOutManage')" class="form-control">
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="8">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10"></div>
<div class="col-md-2 " style="margin-bottom:10px; text-align:right">
<button type="button" class="btn btn-primary" style="margin-left:10px;" v-on:click="_submit()">
<span><vc:i18n name="提交" namespace="resourceOutManage"></vc:i18n></span>
</button>
</div>
</div>
</div>