|
@ -295,6 +295,7 @@ export default { |
|
|
resetQuery() { |
|
|
resetQuery() { |
|
|
this.queryParams.customerId = []; |
|
|
this.queryParams.customerId = []; |
|
|
this.queryParams.versionId = ''; |
|
|
this.queryParams.versionId = ''; |
|
|
|
|
|
this.queryParams.versionIdTwo = ''; |
|
|
this.queryParams.artId = ''; |
|
|
this.queryParams.artId = ''; |
|
|
this.handleQuery(); |
|
|
this.handleQuery(); |
|
|
}, |
|
|
}, |
|
@ -309,7 +310,7 @@ export default { |
|
|
// 导出最新预测偏差 |
|
|
// 导出最新预测偏差 |
|
|
handleNewExport() { |
|
|
handleNewExport() { |
|
|
for (let key in this.queryParams) { |
|
|
for (let key in this.queryParams) { |
|
|
if (this.queryParams[key] == '' || key == 'versionId') { |
|
|
|
|
|
|
|
|
if (this.queryParams[key] == '' || key == 'versionId' || key == 'versionIdTwo') { |
|
|
this.queryParams[key] = undefined |
|
|
this.queryParams[key] = undefined |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|