style(性能测试): 性能测试报告中的错误请求表格增加自适应滚动条

--bug=1032312 --user=宋天阳 【性能测试】请求过多时-错误记录显示不全
https://www.tapd.cn/55049933/s/1429856
This commit is contained in:
song-tianyang 2023-10-24 13:50:07 +08:00 committed by 建国
parent 45d00882bd
commit d9275612bf
2 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="errorSamplesTable">
<el-table
ref="samplesTable"
:data="tableData"
@ -152,4 +152,9 @@ export default {
.el-table :deep(.sample-table-header) {
color: #1a1a1a;
}
.errorSamplesTable {
overflow: auto;
height: calc(100vh - 200px);
}
</style>

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="errorSamplesTable">
<el-table
ref="samplesTable"
:data="tableData"
@ -152,4 +152,9 @@ export default {
.el-table :deep(.sample-table-header) {
color: #1a1a1a;
}
.errorSamplesTable {
overflow: auto;
height: calc(100vh - 200px);
}
</style>