MicroCommunityWeb/public/pages/common/allocationUserStorehouseManage/allocationUserStorehouseManage.html

103 lines
5.2 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
v-on:click="_moreCondition()">
{{allocationUserStorehouseManageInfo.moreCondition == true?'隐藏':'更多'}}
</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请输入物品资源ID"
v-model="allocationUserStorehouseManageInfo.conditions.resId"
class=" form-control">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请输入物品名称"
v-model="allocationUserStorehouseManageInfo.conditions.resName"
class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入接受人ID"
v-model="allocationUserStorehouseManageInfo.conditions.acceptUserId"
class=" form-control">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryAllocationUserStorehouseMethod()">
<i class="fa fa-search"></i> 查询
</button>
</div>
</div>
<div class="row">
<div class="col-sm-4" v-if="allocationUserStorehouseManageInfo.moreCondition == true">
<div class="form-group">
<input type="text" placeholder="请输入接受人名称"
v-model="allocationUserStorehouseManageInfo.conditions.acceptUserName"
class=" form-control">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>转增记录信息</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">转增记录编号</th>
<th class="text-center">物品资源ID</th>
<th class="text-center">物品名称</th>
<th class="text-center">转增对象</th>
<th class="text-center">原有库存</th>
<th class="text-center">转增数量</th>
<th class="text-center">备注</th>
</tr>
</thead>
<tbody>
<tr v-for="allocationUserStorehouse in allocationUserStorehouseManageInfo.allocationUserStorehouses">
<td class="text-center">{{allocationUserStorehouse.ausId}}</td>
<td class="text-center">{{allocationUserStorehouse.resId}}</td>
<td class="text-center">{{allocationUserStorehouse.resName}}</td>
<td class="text-center">{{allocationUserStorehouse.acceptUserName}}</td>
<td class="text-center">{{allocationUserStorehouse.stock}}</td>
<td class="text-center">{{allocationUserStorehouse.giveQuantity}}</td>
<td class="text-center">{{allocationUserStorehouse.remark}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>