fix(性能测试): 修复报告页面偶尔出现弹框报错的问题
--bug=1011382 --user=刘瑞斌 【性能测试】 -首次执行后,点击再次执行页面会出现报错提示 https://www.tapd.cn/55049933/s/1124718 Closes #11601
This commit is contained in:
parent
76b907c804
commit
342b0455ce
|
@ -100,7 +100,9 @@ export default {
|
||||||
},
|
},
|
||||||
handleGetLogResourceDetail(data, resourceId) {
|
handleGetLogResourceDetail(data, resourceId) {
|
||||||
data.listObject.forEach(log => {
|
data.listObject.forEach(log => {
|
||||||
this.logContent[resourceId].push(log);
|
if (this.logContent[resourceId]) {
|
||||||
|
this.logContent[resourceId].push(log);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
this.page[resourceId]++;
|
this.page[resourceId]++;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
|
Loading…
Reference in New Issue