From 2661a01be4d89eb6a4d424fbcad9cf544ab81ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Tue, 20 Jun 2023 16:49:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=8B=E6=9C=BA=E7=AB=AF?= =?UTF-8?q?=E5=BE=85=E5=8A=9E=E4=B8=AD=E5=BF=83=E4=B8=8D=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E9=A1=B5=E7=AD=BE=EF=BC=8C=E6=9F=A5=E8=AF=A2=E7=9A=84=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E9=83=BD=E4=B8=8D=E8=A2=AB=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/phoneView/documentDetails.vue | 6 ++++- jero-web/src/views/phoneView/handlingPage.vue | 12 ++++++++- .../src/views/phoneView/preHomoMangement.vue | 4 ++- .../views/phoneView/problemKnowledgeBase.vue | 6 ++++- .../src/views/phoneView/processManagement.vue | 14 ++++++++-- jero-web/src/views/phoneView/searchList.vue | 8 ++++-- jero-web/src/views/phoneView/toDoCenter.vue | 27 ++++++++++++++----- 7 files changed, 63 insertions(+), 14 deletions(-) diff --git a/jero-web/src/views/phoneView/documentDetails.vue b/jero-web/src/views/phoneView/documentDetails.vue index 54f55a5da..ba0c63afb 100644 --- a/jero-web/src/views/phoneView/documentDetails.vue +++ b/jero-web/src/views/phoneView/documentDetails.vue @@ -150,7 +150,11 @@ iconClick() { if (this.$route.query.goRouter) { this.$router.push({ - path: this.$route.query.goRouter + path: this.$route.query.goRouter, + query: { + searchValue: this.$route.query.searchValue, + activeTab: this.$route.query.activeTab + } }) } else { this.$router.go(-1) diff --git a/jero-web/src/views/phoneView/handlingPage.vue b/jero-web/src/views/phoneView/handlingPage.vue index 2ab8211cf..36423dc24 100644 --- a/jero-web/src/views/phoneView/handlingPage.vue +++ b/jero-web/src/views/phoneView/handlingPage.vue @@ -60,7 +60,17 @@ }, methods: { iconClick() { - this.$router.go(-1) + if (this.$route.query.goRouter) { + this.$router.push({ + path: this.$route.query.goRouter, + query: { + searchValue: this.$route.query.searchValue, + activeTab: this.$route.query.activeTab + } + }) + } else { + this.$router.go(-1) + } }, handlingClick(item) { this.$router.push({ diff --git a/jero-web/src/views/phoneView/preHomoMangement.vue b/jero-web/src/views/phoneView/preHomoMangement.vue index 1dc26f59f..d477cd5c6 100644 --- a/jero-web/src/views/phoneView/preHomoMangement.vue +++ b/jero-web/src/views/phoneView/preHomoMangement.vue @@ -56,7 +56,9 @@