From 6163d5ef6308cbc0b357b289f03a240fae500e07 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Tue, 7 Nov 2023 15:52:48 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=BB=E5=8A=A1=E4=B8=AD=E5=BF=83):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=BB=E5=8A=A1=E4=B8=AD=E5=BF=83=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E5=86=8D=E6=AC=A1=E5=9C=BA=E6=99=AF=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=EF=BC=8C=E6=8A=A5=E5=91=8A=E6=B2=A1=E6=9C=89=E6=94=B6=E5=9B=9E?= =?UTF-8?q?=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=1032321 --user=王孝刚 【任务中心】执行场景用例-任务中心查看-再次点击未收回查看详情 https://www.tapd.cn/55049933/s/1433996 --- .../sdk-parent/frontend/src/components/task/TaskCenter.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/sdk-parent/frontend/src/components/task/TaskCenter.vue b/framework/sdk-parent/frontend/src/components/task/TaskCenter.vue index 1b57e154f8..b27f1240a7 100644 --- a/framework/sdk-parent/frontend/src/components/task/TaskCenter.vue +++ b/framework/sdk-parent/frontend/src/components/task/TaskCenter.vue @@ -470,7 +470,8 @@ export default { } }, showReport(row) { - if (this.size > 600 && this.reportId === row.id) { + if (this.size > 600 && (this.reportId === row.id || + (this.reportId.indexOf('[TEST-PLAN-REDIRECT]')> -1 && this.reportId.split('[TEST-PLAN-REDIRECT]')[1]) === row.id)) { this.packUp(); return; }