mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
114 lines
8.7 KiB
HTML
Executable File
114 lines
8.7 KiB
HTML
Executable File
<div id="chooseResourceStoreModel2" 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="chooseResourceStoreModelLabel2"><span><vc:i18n name="选择" ></vc:i18n></span></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-2">
|
|
<div class="input-group">
|
|
<select class="custom-select custom-select-sm" v-model="chooseResourceStoreInfo2.shId">
|
|
<option selected value="">{{vc.i18n('请选择仓库','chooseResourceStore2')}}</option>
|
|
<option v-for="(item,index) in chooseResourceStoreInfo2.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="chooseResourceStoreInfo2.parentRstId" @change="_listResourceStoreSonTypes">
|
|
<option selected value="">{{vc.i18n('请选择物品类型','chooseResourceStore2')}}</option>
|
|
<option v-for="(item,index) in chooseResourceStoreInfo2.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="chooseResourceStoreInfo2.rstId">
|
|
<option selected value="">{{vc.i18n('请选择二级分类','chooseResourceStore2')}}</option>
|
|
<option v-for="(item,index) in chooseResourceStoreInfo2.resourceStoreSonTypes"
|
|
:key="index" v-bind:value="item.rstId">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="input-group">
|
|
<input :placeholder="vc.i18n('输入物品管理名称','chooseResourceStore2')" type="text" v-model="chooseResourceStoreInfo2._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()"><span><vc:i18n name="查询" namespace="chooseResourceStore2"></vc:i18n></span></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"><span><vc:i18n name="仓库" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品类型" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品名称" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品规格" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品编码" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="是否是固定物品" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品价格" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
<th class="text-center"><span><vc:i18n name="物品库存" namespace="chooseResourceStore2"></vc:i18n></span></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="resourceStore in chooseResourceStoreInfo2.resourceStores">
|
|
<td class="text-center">
|
|
<input type="checkbox" class="i-checks checkItem" v-bind:value="resourceStore.resId" v-model="chooseResourceStoreInfo2.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.rssName ? resourceStore.rssName : '-'}}
|
|
</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>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
<div class="ibox-content" v-if="chooseResourceStoreInfo2.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> |