From f39cc66497717ceeda59e567f9ea983351477f5f Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Mon, 29 Aug 2022 16:47:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E5=AE=9A=E4=B9=89):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=87=AA=E5=8A=A8=E5=8C=96=E5=9C=BA=E6=99=AF?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E6=95=B0=E6=8D=AE=E6=BA=90=E5=89=8D=E5=90=8E?= =?UTF-8?q?=E7=BD=AEsql=E6=B2=A1=E6=9C=89=E5=8F=98=E5=8C=96=E7=9A=84?= =?UTF-8?q?=E7=BC=BA=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1016307 --user=王孝刚 【接口测试】github#17311,接口自动化中,非默认项目切换不同环境,导致数据源发生变化。 https://www.tapd.cn/55049933/s/1235215 --- .../components/api/definition/components/step/JmxStep.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/business/components/api/definition/components/step/JmxStep.vue b/frontend/src/business/components/api/definition/components/step/JmxStep.vue index 735e30a4e3..6edc8d3a6e 100644 --- a/frontend/src/business/components/api/definition/components/step/JmxStep.vue +++ b/frontend/src/business/components/api/definition/components/step/JmxStep.vue @@ -412,6 +412,7 @@ export default { if (this.request.disabled) { jdbcPreProcessor.label = 'SCENARIO-REF-STEP'; } + jdbcPreProcessor.projectId = this.request.projectId; jdbcPreProcessor.active = false; this.request.hashTree.push(jdbcPreProcessor); this.sort(); @@ -425,6 +426,7 @@ export default { if (this.request.disabled) { jdbcPostProcessor.label = 'SCENARIO-REF-STEP'; } + jdbcPostProcessor.projectId = this.request.projectId; jdbcPostProcessor.active = false; this.request.hashTree.push(jdbcPostProcessor); this.sort();