From ff7f02984a50e41cab80f4c1ad53da2b70ea88d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Sun, 25 Jun 2023 15:33:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=8B=E6=9C=BA=E7=AB=AF?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E8=B7=B3=E5=88=B0pc=E7=9A=84=E9=A6=96?= =?UTF-8?q?=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/views/phoneView/taskData.vue | 2 +- jero-web/src/views/phoneView/toDoCenter.vue | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/jero-web/src/views/phoneView/taskData.vue b/jero-web/src/views/phoneView/taskData.vue index fde6d12c4..784274adc 100644 --- a/jero-web/src/views/phoneView/taskData.vue +++ b/jero-web/src/views/phoneView/taskData.vue @@ -198,7 +198,7 @@ this.$router.push({ path: '/phoneToDoCenter', query: { - flowType: num + searchFlowType: num } }) }, diff --git a/jero-web/src/views/phoneView/toDoCenter.vue b/jero-web/src/views/phoneView/toDoCenter.vue index 316b9a106..e415ff460 100644 --- a/jero-web/src/views/phoneView/toDoCenter.vue +++ b/jero-web/src/views/phoneView/toDoCenter.vue @@ -278,8 +278,8 @@ }, mounted() { document.title = 'NIO GRP' - if (this.$route.query.flowType) { - let flowType = this.$route.query.flowType + if (this.$route.query.searchFlowType) { + let flowType = this.$route.query.searchFlowType flowType = flowType.split(',') this.form.flowType = [] this.form.flowType = this.form.flowType.concat(flowType) @@ -289,7 +289,6 @@ } if (this.$route.query.activeTab) { this.activeTab = this.$route.query.activeTab - this.form.flowType = this.$route.query.searchFlowType this.form.checked = JSON.parse(this.$route.query.checked) this.form.selectModel = this.$route.query.selectModel } @@ -485,7 +484,7 @@ activeTab: this.activeTab, checked: this.form.checked, selectModel: this.form.selectModel, - searchFlowType: this.form.flowType + searchFlowType: this.form.flowType.join(','), } this.$router.push({ path: '/phoneProcessManagement', @@ -509,7 +508,7 @@ goRouter: '/phoneToDoCenter', searchValue: this.phoneQueryValue, activeTab: this.activeTab, - searchFlowType: this.form.flowType, + searchFlowType: this.form.flowType.join(','), checked: this.form.checked, selectModel: this.form.selectModel } @@ -531,7 +530,7 @@ goRouter: '/phoneToDoCenter', searchValue: this.phoneQueryValue, activeTab: this.activeTab, - searchFlowType: this.form.flowType, + searchFlowType: this.form.flowType.join(','), checked: this.form.checked, selectModel: this.form.selectModel }