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 }