From 88b3525e4185602d381b78d9b0459ee4f38684ec Mon Sep 17 00:00:00 2001 From: fit2-zhao Date: Wed, 25 Aug 2021 11:22:21 +0800 Subject: [PATCH] =?UTF-8?q?fix=20(=E6=8E=A5=E5=8F=A3=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96):=20=E4=BF=AE=E5=A4=8D=E5=9C=BA=E6=99=AF=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E5=8C=96=E5=90=8E=E6=8E=A8=E8=8D=90=E6=96=AD=E8=A8=80?= =?UTF-8?q?=E5=92=8C=E6=8F=90=E5=8F=96=E9=97=AE=E9=A2=98=20#1005933=20--bu?= =?UTF-8?q?g=3D1005933=20--user=3D=E8=B5=B5=E5=8B=87=20=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E5=85=A8=E5=B1=8F=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E6=97=B6...=20https://www.tapd.cn/55049933/s/1039175?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/automation/scenario/maximize/MaximizeScenario.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/business/components/api/automation/scenario/maximize/MaximizeScenario.vue b/frontend/src/business/components/api/automation/scenario/maximize/MaximizeScenario.vue index 249539e3ba..edb5d84d55 100644 --- a/frontend/src/business/components/api/automation/scenario/maximize/MaximizeScenario.vue +++ b/frontend/src/business/components/api/automation/scenario/maximize/MaximizeScenario.vue @@ -357,9 +357,9 @@ export default { suggestClick(node) { this.response = {}; if (node && node.parent && node.parent.data.requestResult) { - this.response = node.parent.data.requestResult; + this.response = node.parent.data.requestResult[0]; } else if (this.selectedNode) { - this.response = this.selectedNode.data.requestResult; + this.response = this.selectedNode.data.requestResult[0]; } }, showAll() { @@ -920,7 +920,7 @@ export default { } #fab { - right: 80px; + right: 90px; z-index: 5; }