Browse Source

预测偏差

wangxy
wangxy 2 years ago
parent
commit
ce346ba33e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/views/plan/workbench/predictionDeviation/index.vue

+ 2
- 1
src/views/plan/workbench/predictionDeviation/index.vue View File

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


Loading…
Cancel
Save