|
@@ -15,6 +15,11 @@
|
|
|
<v-select code="ENABLE_FLAG" id="productBrandList-enabledFlag" v-model="queryParam.enabledFlag" allowClear placeholder="请选择启用状态"></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="品牌类型">
|
|
|
+ <v-select code="SYS_FLAG" id="productBrandList-sysFlag" v-model="queryParam.sysFlag" allowClear placeholder="请选择品牌类型"></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="productBrandList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="productBrandList-reset">重置</a-button>
|
|
@@ -81,7 +86,8 @@ export default {
|
|
|
spinning: false,
|
|
|
queryParam: { // 查询条件
|
|
|
brandName: '', // 品牌名称
|
|
|
- enabledFlag: undefined // 状态
|
|
|
+ enabledFlag: undefined, // 状态
|
|
|
+ sysFlag: undefined // 品牌类型
|
|
|
},
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
|
tableHeight: 0, // 表格高度
|
|
@@ -121,6 +127,7 @@ export default {
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.brandName = ''
|
|
|
this.queryParam.enabledFlag = undefined
|
|
|
+ this.queryParam.sysFlag = undefined
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|
|
|
// 新增/编辑
|