From 4039bab50e8b6a1a5ae36977f1fcbd22014dd3b7 Mon Sep 17 00:00:00 2001 From: baiqi Date: Mon, 25 Nov 2024 16:37:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E5=9C=BA=E6=99=AF=E6=89=B9=E9=87=8F=E7=BC=96=E8=BE=91=E5=AE=9A?= =?UTF-8?q?=E6=97=B6=E4=BB=BB=E5=8A=A1=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/api-test/scenario/components/scenarioTable.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/api-test/scenario/components/scenarioTable.vue b/frontend/src/views/api-test/scenario/components/scenarioTable.vue index 2b1788987b..18e2810fd2 100644 --- a/frontend/src/views/api-test/scenario/components/scenarioTable.vue +++ b/frontend/src/views/api-test/scenario/components/scenarioTable.vue @@ -1306,11 +1306,13 @@ updateParam.config.environmentId = undefined; } if (isBatch.value) { + const batchConditionParams = await getBatchConditionParams(); await scenarioBatchEditSchedule({ ...batchParams.value, projectId: appStore.currentProjectId, selectIds: batchParams.value?.selectedIds || [], ...updateParam, + moduleIds: batchConditionParams.moduleIds, }); } else { await scenarioScheduleConfig(updateParam);