|
|
@@ -29,6 +29,11 @@
|
|
|
<productTypeAll placeholder="请选择产品分类" @change="changeProductType" v-model="productType" id="salesEdit-productType"></productTypeAll>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col flex="1">
|
|
|
+ <a-form-item label="是否缺货">
|
|
|
+ <v-select code="FLAG" v-model="queryParam.outStock" allowClear placeholder="请选择是否缺货"></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col flex="2" style="margin-bottom: 10px;">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="salesEdit-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="salesEdit-reset">重置</a-button>
|
|
|
@@ -302,7 +307,8 @@ export default {
|
|
|
productBrandSn: undefined, // 产品品牌
|
|
|
productTypeSn1: '', // 产品一级分类
|
|
|
productTypeSn2: '', // 产品二级分类
|
|
|
- productTypeSn3: '' // 产品三级分类
|
|
|
+ productTypeSn3: '', // 产品三级分类
|
|
|
+ outStock: undefined
|
|
|
},
|
|
|
productType: [], // 产品分类
|
|
|
rowSelectionInfo: null, // 已选的产品数据
|
|
|
@@ -590,6 +596,7 @@ export default {
|
|
|
this.queryParam.productName = ''
|
|
|
this.queryParam.warehouseSn = undefined
|
|
|
this.queryParam.productBrandSn = undefined
|
|
|
+ this.queryParam.outStock = undefined
|
|
|
this.queryParam.productTypeSn1 = ''
|
|
|
this.queryParam.productTypeSn2 = ''
|
|
|
this.queryParam.productTypeSn3 = ''
|