diff --git a/frontend/src/business/components/task/TaskCenter.vue b/frontend/src/business/components/task/TaskCenter.vue index d85320a7b6..c328b50f43 100644 --- a/frontend/src/business/components/task/TaskCenter.vue +++ b/frontend/src/business/components/task/TaskCenter.vue @@ -48,14 +48,16 @@ - + - + @@ -65,7 +67,7 @@ + style="margin-right: 10px" @change="init" :disabled="isDebugHistory"> - + {{ $t('report.stop_btn_all') }} @@ -213,6 +215,7 @@ export default { reportId: "", executionModule: "", reportType: "", + isDebugHistory: false }; }, props: { @@ -436,6 +439,8 @@ export default { openHistory(id) { this.initCaseHistory(id); this.taskVisible = true; + this.isDebugHistory = true; + this.condition.triggerMode = "MANUAL"; this.showType = "CASE"; }, openScenarioHistory(id) { @@ -443,6 +448,8 @@ export default { this.taskData = response.data; }); this.showType = "SCENARIO"; + this.isDebugHistory = true; + this.condition.triggerMode = "MANUAL"; this.taskVisible = true; } }