|
@@ -3,12 +3,22 @@
|
|
|
<div ref="tableSearch" class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
<a-row :gutter="15">
|
|
|
- <a-col :md="9" :sm="24">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="产品品牌">
|
|
|
+ <v-select
|
|
|
+ code="BRAND_TYPE"
|
|
|
+ id="inventoryQueryList-productBrandType"
|
|
|
+ v-model="queryParam.productBrandType"
|
|
|
+ allowClear
|
|
|
+ placeholder="请选择价格级别"></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
<a-form-item label="产品品牌">
|
|
|
<ProductBrand id="inventoryQueryList-productBrandSn" v-model="queryParam.productBrandSn"></ProductBrand>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="9" :sm="24">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
<a-form-model-item label="产品分类">
|
|
|
<ProductType id="inventoryQueryList-productType" placeholder="请选择产品分类" @change="changeProductType" v-model="productType"></ProductType>
|
|
|
</a-form-model-item>
|
|
@@ -48,10 +58,11 @@ import ProductType from '@/views/common/productType.js'
|
|
|
import ProductBrand from '@/views/common/productBrand.js'
|
|
|
import { Empty } from 'ant-design-vue'
|
|
|
import { queryWaitingData } from '@/api/dealerScope'
|
|
|
+import { VSelect } from '@/components'
|
|
|
export default {
|
|
|
name: 'DetailProductList',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { ProductType, ProductBrand },
|
|
|
+ components: { ProductType, ProductBrand, VSelect },
|
|
|
props: {
|
|
|
maxHeight: {
|
|
|
type: [String, Number],
|
|
@@ -68,6 +79,7 @@ export default {
|
|
|
chooseDataList: [],
|
|
|
selectedRowKeys: [],
|
|
|
queryParam: {
|
|
|
+ productBrandType: undefined,
|
|
|
productBrandSn: undefined,
|
|
|
productTypeSn1: undefined, // 产品一级分类
|
|
|
productTypeSn2: undefined, // 产品二级分类
|
|
@@ -141,6 +153,7 @@ export default {
|
|
|
},
|
|
|
resetSearchForm () {
|
|
|
this.queryParam = {
|
|
|
+ productBrandType: undefined,
|
|
|
productBrandSn: undefined,
|
|
|
productTypeSn1: undefined, // 产品一级分类
|
|
|
productTypeSn2: undefined, // 产品二级分类
|