add(record): 增加树型结构滚动条

- 为树形结构容器添加固定高度和垂直滚动条,提高长数据列表的可用性
- 修改涉及 recordBusbarTemp 和 recordBusbarTempCurve 两个组件
IOT
zch 2 months ago
parent 6720b059f7
commit 4c5a4e6820

@ -748,5 +748,9 @@ export default {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
object-fit: contain;
}
.tree-container {
height: 666px; /* 设置固定高度 */
overflow-y: auto; /* 添加垂直滚动条 */
}
</style>

@ -774,4 +774,8 @@ export default {
display: inline-block;
height: 40vh;
}
.tree-container {
height: 666px; /* 设置固定高度 */
overflow-y: auto; /* 添加垂直滚动条 */
}
</style>

Loading…
Cancel
Save