|
@@ -15,12 +15,12 @@
|
|
|
@keyup.enter.native="handleSearch" >
|
|
|
<a-row :gutter="15">
|
|
|
<a-col :md="6" :sm="24">
|
|
|
- <a-form-model-item label="连锁店" prop="dealerSn">
|
|
|
+ <a-form-model-item label="连锁店" prop="tenantId">
|
|
|
<a-select
|
|
|
placeholder="请选择连锁店"
|
|
|
- id="customerReportList-dealerSn"
|
|
|
+ id="customerReportList-tenantId"
|
|
|
allowClear
|
|
|
- v-model="queryParam.dealerSn"
|
|
|
+ v-model="queryParam.tenantId"
|
|
|
:showSearch="true"
|
|
|
option-filter-prop="children"
|
|
|
:filter-option="filterOption">
|
|
@@ -125,7 +125,7 @@ export default {
|
|
|
advanced: true, // 高级搜索 展开/关闭
|
|
|
tableHeight: 0,
|
|
|
queryParam: { // 查询条件
|
|
|
- dealerSn: undefined,
|
|
|
+ tenantId: undefined,
|
|
|
time: [],
|
|
|
beginDate: '',
|
|
|
endDate: '',
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
},
|
|
|
productType: [],
|
|
|
rules: {
|
|
|
- 'dealerSn': [{ required: true, message: '请选择连锁店', trigger: 'change' }],
|
|
|
+ 'tenantId': [{ required: true, message: '请选择连锁店', trigger: 'change' }],
|
|
|
'time': [{ required: true, message: '请选择添加时间', trigger: 'change' }]
|
|
|
},
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
@@ -224,7 +224,7 @@ export default {
|
|
|
},
|
|
|
// 重置
|
|
|
resetSearchForm () {
|
|
|
- this.queryParam.dealerSn = undefined
|
|
|
+ this.queryParam.tenantId = undefined
|
|
|
this.$refs.rangeDate.resetDate()
|
|
|
this.queryParam.time = []
|
|
|
this.queryParam.beginDate = ''
|