From 43803b59ef19902b2290896448382ad9603b5c64 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Wed, 8 Jun 2022 13:37:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=A5=E5=8F=A3=E8=87=AA=E5=8A=A8=E5=8C=96?= =?UTF-8?q?=E8=B0=83=E8=AF=95=E5=8E=86=E5=8F=B2=E9=80=89=E6=8B=A9=E6=A1=86?= =?UTF-8?q?=E5=8F=AF=E7=82=B9=E5=87=BB=E7=9A=84=E7=BC=BA=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1013865 --user=王孝刚 【接口自动化】调试历史,触发方式/状态 筛选不生效 https://www.tapd.cn/55049933/s/1176115 --- .../src/business/components/task/TaskCenter.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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; } }