fix(任务中心): 修复任务中心点击再次场景报告,报告没有收回的缺陷
--bug=1032321 --user=王孝刚 【任务中心】执行场景用例-任务中心查看-再次点击未收回查看详情 https://www.tapd.cn/55049933/s/1433996
This commit is contained in:
parent
b645407fa4
commit
6163d5ef63
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue