diff --git a/frontend/src/views/api-test/scenario/components/scenarioTable.vue b/frontend/src/views/api-test/scenario/components/scenarioTable.vue index 45b54c10b6..88f225e2e8 100644 --- a/frontend/src/views/api-test/scenario/components/scenarioTable.vue +++ b/frontend/src/views/api-test/scenario/components/scenarioTable.vue @@ -1228,7 +1228,7 @@ scheduleConfig.value = { scenarioId: record.id, enable: true, - cron: '0 0 0/1 * * ?', + cron: '', config: { poolId: defaultPoolId?.value, grouped: false, diff --git a/frontend/src/views/test-plan/testPlan/components/scheduledModal.vue b/frontend/src/views/test-plan/testPlan/components/scheduledModal.vue index 945714a909..e9acac5f2c 100644 --- a/frontend/src/views/test-plan/testPlan/components/scheduledModal.vue +++ b/frontend/src/views/test-plan/testPlan/components/scheduledModal.vue @@ -25,7 +25,7 @@ - + @@ -139,7 +139,7 @@ const initForm: CreateTask = { resourceId: '', - cron: '0 0 0/1 * * ?', + cron: '', enable: false, runConfig: { runMode: 'SERIAL' }, }; diff --git a/frontend/src/views/test-plan/testPlan/locale/en-US.ts b/frontend/src/views/test-plan/testPlan/locale/en-US.ts index 953ccdfc7d..9fe58344a7 100644 --- a/frontend/src/views/test-plan/testPlan/locale/en-US.ts +++ b/frontend/src/views/test-plan/testPlan/locale/en-US.ts @@ -53,7 +53,7 @@ export default { 'testPlan.testPlanIndex.triggerTime': 'Trigger time', 'testPlan.testPlanIndex.envTip': 'Use case save environment', 'testPlan.testPlanIndex.resourcePool': 'Resource pool', - 'testPlan.testPlanIndex.timingState': 'Timing state', + 'testPlan.testPlanIndex.timingState': 'Task status', 'testPlan.testPlanIndex.timingStateEnable': 'Enable: Executes scheduled tasks', 'testPlan.testPlanIndex.timingStateClose': 'Close: Stops a scheduled task', 'testPlan.testPlanIndex.customFrequency': 'Custom frequency', diff --git a/frontend/src/views/test-plan/testPlan/locale/zh-CN.ts b/frontend/src/views/test-plan/testPlan/locale/zh-CN.ts index b857b5e0ba..4b1bc10d29 100644 --- a/frontend/src/views/test-plan/testPlan/locale/zh-CN.ts +++ b/frontend/src/views/test-plan/testPlan/locale/zh-CN.ts @@ -50,7 +50,7 @@ export default { 'testPlan.testPlanIndex.triggerTime': '触发时间', 'testPlan.testPlanIndex.envTip': '用例保存的环境', 'testPlan.testPlanIndex.resourcePool': '资源池', - 'testPlan.testPlanIndex.timingState': '定时状态', + 'testPlan.testPlanIndex.timingState': '任务状态', 'testPlan.testPlanIndex.timingStateEnable': '开启:执行定时任务', 'testPlan.testPlanIndex.timingStateClose': '关闭:停止定时任务', 'testPlan.testPlanIndex.customFrequency': '自定义频率',