From 018f7caf8827fe3518d19c27a751374eb01d8fe2 Mon Sep 17 00:00:00 2001 From: q4speed Date: Wed, 5 Aug 2020 16:57:54 +0800 Subject: [PATCH 1/7] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):?= =?UTF-8?q?=20=E4=BF=AE=E5=A4=8Dzookeeper=E6=97=A0=E9=99=90=E9=87=8D?= =?UTF-8?q?=E8=BF=9Ebug=EF=BC=8C=E4=BF=AE=E5=A4=8DRegistry=20Center?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=90=8E=E6=97=A0=E6=B3=95=E7=94=9F=E6=95=88?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pom.xml b/backend/pom.xml index eaec728b54..03582abcdc 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -217,7 +217,7 @@ io.metersphere jmeter-plugins-dubbo - 2.7.8 + 2.7.9 From f10c2338586633fe83ec878212bd1fecf0c78d54 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 5 Aug 2020 17:22:01 +0800 Subject: [PATCH 2/7] =?UTF-8?q?refactor:=20=E4=BF=9D=E5=AD=98=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=B5=8B=E8=AF=95=E4=B8=8D=E8=B7=B3=E8=BD=AC=E5=88=B0?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/components/api/test/ApiTestConfig.vue | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/frontend/src/business/components/api/test/ApiTestConfig.vue b/frontend/src/business/components/api/test/ApiTestConfig.vue index ab1d4cd63f..f95c758e1c 100644 --- a/frontend/src/business/components/api/test/ApiTestConfig.vue +++ b/frontend/src/business/components/api/test/ApiTestConfig.vue @@ -157,13 +157,9 @@ saveTest() { this.save(() => { this.$success(this.$t('commons.save_success')); - if (this.create) { - this.$router.push({ - path: '/api/test/edit?id=' + this.test.id - }) - } else { - this.$router.push({path: '/api/test/list/all'}) - } + this.$router.push({ + path: '/api/test/edit?id=' + this.test.id; + }) }) }, runTest() { @@ -183,7 +179,6 @@ }) }, cancel() { - // console.log(this.test.toJMX().xml) this.$router.push('/api/test/list/all'); }, getOptions(url) { From 0d3f93a71c145801bb2d142e33146450e08917b0 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 5 Aug 2020 17:23:03 +0800 Subject: [PATCH 3/7] =?UTF-8?q?fix:=20=E4=BF=9D=E5=AD=98=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/business/components/api/test/ApiTestConfig.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/api/test/ApiTestConfig.vue b/frontend/src/business/components/api/test/ApiTestConfig.vue index f95c758e1c..5461bc7034 100644 --- a/frontend/src/business/components/api/test/ApiTestConfig.vue +++ b/frontend/src/business/components/api/test/ApiTestConfig.vue @@ -158,7 +158,7 @@ this.save(() => { this.$success(this.$t('commons.save_success')); this.$router.push({ - path: '/api/test/edit?id=' + this.test.id; + path: '/api/test/edit?id=' + this.test.id }) }) }, From 61496ce11af4785bdeeb729a2b3b4a0c34a1f4c9 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 5 Aug 2020 18:13:14 +0800 Subject: [PATCH 4/7] =?UTF-8?q?fix:=20=E4=BE=A7=E8=BE=B9=E6=A0=8F=E6=8A=98?= =?UTF-8?q?=E5=8F=A0=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/components/MsAsideContainer.vue | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/frontend/src/business/components/common/components/MsAsideContainer.vue b/frontend/src/business/components/common/components/MsAsideContainer.vue index 982a542550..90d9ec7e9b 100644 --- a/frontend/src/business/components/common/components/MsAsideContainer.vue +++ b/frontend/src/business/components/common/components/MsAsideContainer.vue @@ -1,9 +1,9 @@