From 1a9d499eae6c16a0f33e598902957af9383336c4 Mon Sep 17 00:00:00 2001 From: fit2-zhao Date: Tue, 13 Jul 2021 17:55:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96):=20=E5=8D=95=E6=AD=A5=E8=B0=83=E8=AF=95=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E6=B8=85=E7=90=86=E6=8E=89=E4=B9=8B=E5=89=8D=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/automation/scenario/component/ApiComponent.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/business/components/api/automation/scenario/component/ApiComponent.vue b/frontend/src/business/components/api/automation/scenario/component/ApiComponent.vue index 0903083977..58a9d5d0a0 100644 --- a/frontend/src/business/components/api/automation/scenario/component/ApiComponent.vue +++ b/frontend/src/business/components/api/automation/scenario/component/ApiComponent.vue @@ -401,6 +401,8 @@ export default { enableCookieShare: this.enableCookieShare, environmentId: this.currentEnvironmentId, hashTree: [this.request], }; this.runData.push(debugData); + this.request.requestResult = undefined; + this.request.result = undefined; /*触发执行操作*/ this.reportId = getUUID(); }, @@ -408,7 +410,7 @@ export default { this.loading = false; }, runRefresh(data) { - this.request.requestResult =[data] ; + this.request.requestResult = [data]; this.request.result = undefined; this.loading = false; this.$emit('refReload', this.request, this.node); @@ -459,6 +461,7 @@ export default { margin: 20px; float: right; } + .ms-step-name-api { display: inline-block; margin: 0 5px; @@ -469,6 +472,7 @@ export default { white-space: nowrap; width: 60px; } + .ms-tag { margin-left: 10px; }