Browse Source

预测偏差

xuxiaoming
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() { 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
} }
} }


Loading…
Cancel
Save