From 5c10d3b3f73d65bc2a7ca8ff19d2bd2c8ae4e739 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 10:58: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 --- .../src/views/phoneView/processManagement.vue | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/jero-web/src/views/phoneView/processManagement.vue b/jero-web/src/views/phoneView/processManagement.vue index 4e27f164a..3eb70bd54 100644 --- a/jero-web/src/views/phoneView/processManagement.vue +++ b/jero-web/src/views/phoneView/processManagement.vue @@ -271,9 +271,9 @@ query: { searchValue: this.$route.query.searchValue, activeTab: this.$route.query.activeTab, - searchFlowType:this.$route.query.searchFlowType, - checked:this.$route.query.checked, - selectModel:this.$route.query.selectModel, + searchFlowType: this.$route.query.searchFlowType, + checked: this.$route.query.checked, + selectModel: this.$route.query.selectModel } }) } else { @@ -458,7 +458,20 @@ if (res.success) { this.$message.success(this.$t('OperationSuccessful')) this.show = false - 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, + searchFlowType: this.$route.query.searchFlowType, + checked: this.$route.query.checked, + selectModel: this.$route.query.selectModel + } + }) + } else { + this.$router.go(-1) + } } else { this.show = false this.$message.warning(res.message)