|
@@ -141,9 +141,6 @@ export default {
|
|
queryType: 'quarter', // 轮胎季度费用报表
|
|
queryType: 'quarter', // 轮胎季度费用报表
|
|
beginDate: undefined, // 开始时间
|
|
beginDate: undefined, // 开始时间
|
|
endDate: undefined, // 结束时间
|
|
endDate: undefined, // 结束时间
|
|
- provinceSn: undefined, // 省
|
|
|
|
- citySn: undefined, // 市
|
|
|
|
- districtSn: undefined, // 区
|
|
|
|
dealerLevel: undefined, // 客户级别
|
|
dealerLevel: undefined, // 客户级别
|
|
subareaArea: {
|
|
subareaArea: {
|
|
subareaSn: '', // 区域
|
|
subareaSn: '', // 区域
|
|
@@ -151,7 +148,10 @@ export default {
|
|
},
|
|
},
|
|
customSn: undefined, // 客户sn
|
|
customSn: undefined, // 客户sn
|
|
dealerEntity: {
|
|
dealerEntity: {
|
|
- dealerName: undefined// 客户名称
|
|
|
|
|
|
+ dealerName: undefined,// 客户名称
|
|
|
|
+ provinceSn: undefined, // 省
|
|
|
|
+ citySn: undefined, // 市
|
|
|
|
+ districtSn: undefined // 区
|
|
},
|
|
},
|
|
provinceFlag: '1'// 是轮胎省仓
|
|
provinceFlag: '1'// 是轮胎省仓
|
|
},
|
|
},
|
|
@@ -257,9 +257,9 @@ export default {
|
|
},
|
|
},
|
|
// 地区
|
|
// 地区
|
|
areaChange (val) {
|
|
areaChange (val) {
|
|
- this.queryParam.provinceSn = val[0] ? val[0] : undefined
|
|
|
|
- this.queryParam.citySn = val[1] ? val[1] : undefined
|
|
|
|
- this.queryParam.districtSn = val[2] ? val[2] : undefined
|
|
|
|
|
|
+ this.queryParam.dealerEntity.provinceSn = val[0] ? val[0] : undefined
|
|
|
|
+ this.queryParam.dealerEntity.citySn = val[1] ? val[1] : undefined
|
|
|
|
+ this.queryParam.dealerEntity.districtSn = val[2] ? val[2] : undefined
|
|
},
|
|
},
|
|
// 日期选择 change
|
|
// 日期选择 change
|
|
dateChange (date, valStr) {
|
|
dateChange (date, valStr) {
|
|
@@ -283,9 +283,9 @@ export default {
|
|
this.queryParam.time = []
|
|
this.queryParam.time = []
|
|
this.queryParam.beginDate = ''
|
|
this.queryParam.beginDate = ''
|
|
this.queryParam.endDate = ''
|
|
this.queryParam.endDate = ''
|
|
- this.queryParam.provinceSn = undefined
|
|
|
|
- this.queryParam.citySn = undefined
|
|
|
|
- this.queryParam.districtSn = undefined
|
|
|
|
|
|
+ this.queryParam.dealerEntity.provinceSn = undefined
|
|
|
|
+ this.queryParam.dealerEntity.citySn = undefined
|
|
|
|
+ this.queryParam.dealerEntity.districtSn = undefined
|
|
this.queryParam.dealerEntity.dealerName = undefined
|
|
this.queryParam.dealerEntity.dealerName = undefined
|
|
this.queryParam.customSn = undefined
|
|
this.queryParam.customSn = undefined
|
|
this.queryParam.subareaArea.subareaSn = undefined
|
|
this.queryParam.subareaArea.subareaSn = undefined
|