|
@@ -12,7 +12,7 @@
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-item label="产品编码/通用编码">
|
|
|
- <a-input id="productOfflineAuditList-code" v-model.trim="queryParam.code" allowClear placeholder="请输入产品编码/通用编码"/>
|
|
|
+ <a-input id="productOfflineAuditList-queryWord" v-model.trim="queryParam.queryWord" allowClear placeholder="请输入产品编码/通用编码"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
@@ -131,7 +131,7 @@ export default {
|
|
|
tableHeight: 0,
|
|
|
queryParam: { // 查询条件
|
|
|
name: '', // 产品名称
|
|
|
- code: '', // 产品编码
|
|
|
+ queryWord: '',
|
|
|
productBrandSn: undefined, // 产品品牌
|
|
|
productTypeSn1: '', // 产品一级分类
|
|
|
productTypeSn2: '', // 产品二级分类
|
|
@@ -200,7 +200,7 @@ export default {
|
|
|
// 重置
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.name = ''
|
|
|
- this.queryParam.code = ''
|
|
|
+ this.queryParam.queryWord = ''
|
|
|
this.queryParam.productBrandSn = undefined
|
|
|
this.queryParam.productTypeSn1 = ''
|
|
|
this.queryParam.productTypeSn2 = ''
|