mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
124 lines
8.2 KiB
HTML
124 lines
8.2 KiB
HTML
<div id="chooseResourceStaffModel" class="modal fade" tabindex="-1" role="dialog"
|
|
aria-labelledby="chooseResourceStoreModelLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title" id="chooseResourceStoreModelLabel3">选择物品管理</h3>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class=" row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="row">
|
|
<!-- <div class="col-sm-3">
|
|
<div class="input-group">
|
|
<select class="custom-select custom-select-sm" v-model="chooseResourceStaffInfo.shId">
|
|
<option selected value="">请选择仓库</option>
|
|
<option v-for="(item,index) in chooseResourceStaffInfo.storehouses" :key="index" v-bind:value="item.shId">
|
|
{{item.shName}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div> -->
|
|
<div class="col-sm-3">
|
|
<div class="input-group">
|
|
<select class="custom-select custom-select-sm"
|
|
v-model="chooseResourceStaffInfo.parentRstId"
|
|
@change="_listResourceStoreSonTypes">
|
|
<option selected value="">请选择物品类型</option>
|
|
<option v-for="(item,index) in chooseResourceStaffInfo.resourceStoreTypes"
|
|
:key="index" v-bind:value="item.rstId">{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="input-group">
|
|
<select class="custom-select custom-select-sm"
|
|
v-model="chooseResourceStaffInfo.rstId">
|
|
<option selected value="">请选择二级分类</option>
|
|
<option v-for="(item,index) in chooseResourceStaffInfo.resourceStoreSonTypes"
|
|
:key="index" v-bind:value="item.rstId">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-5">
|
|
<div class="input-group">
|
|
<input placeholder="输入物品管理名称" type="text"
|
|
v-model="chooseResourceStaffInfo._currentResourceStoreName"
|
|
class="form-control form-control-sm">
|
|
<span class="input-group-append">
|
|
<button type="button" class="btn btn-sm btn-primary"
|
|
v-on:click="queryResourceStores()">查询</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive" style="margin-top:15px">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<input type="checkbox" class="i-checks " @click="checkAll($event)"
|
|
id="quan">
|
|
</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>
|
|
<!-- <th class="text-center">物品价格</th> -->
|
|
<th class="text-center">物品库存</th>
|
|
<th class="text-center">最小计量总数</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="resourceStore in chooseResourceStaffInfo.resourceStores">
|
|
<td class="text-center">
|
|
<input type="checkbox" class="i-checks checkItem"
|
|
v-bind:value="resourceStore.resId"
|
|
v-model="chooseResourceStaffInfo.selectResourceStores">
|
|
</td>
|
|
<!-- <td class="text-center">{{resourceStore.shName}}</td> -->
|
|
<td class="text-center">
|
|
{{resourceStore.parentRstName ? resourceStore.parentRstName : '-'}} >
|
|
{{resourceStore.rstName ? resourceStore.rstName : '-'}}
|
|
</td>
|
|
<td class="text-center">{{resourceStore.resName}}</td>
|
|
<td class="text-center">{{resourceStore.resCode}}</td>
|
|
<td class="text-center">{{resourceStore.isFixedName}}</td>
|
|
<!-- <td class="text-center">{{resourceStore.price}}</td> -->
|
|
<td class="text-center">
|
|
{{resourceStore.stock}}{{resourceStore.unitCodeName}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{resourceStore.miniStock}}{{resourceStore.miniUnitCodeName}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
<div class="ibox-content" v-if="chooseResourceStaffInfo.resourceStores.length > 0">
|
|
<button class="btn btn-primary float-right" type="button"
|
|
v-on:click="getSelectResourceStores()">
|
|
<i class="fa fa-check"></i> 提交
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal">
|
|
<i class="fa fa-close"></i> 取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |