table滚动

This commit is contained in:
Songsl 2026-04-25 18:08:15 +08:00
parent 07cceb5060
commit 8090c6a28c
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="table-container">
<el-table :data="tableData" :row-key="rowKey" :tree-props="treeProps" :border="border"
<el-table height="100%" :data="tableData" :row-key="rowKey" :tree-props="treeProps" :border="border"
:highlight-current-row="highlightCurrentRow" v-bind="$attrs" @row-click="handleRowClick">
<!-- 动态表头列 -->
<template v-for="(column, index) in columns" :key="index">
@ -63,8 +63,8 @@ const handleRowClick = (row: any) => {
<style scoped lang="scss">
.table-container {
max-width: calc(100vw - 200px);
max-height: calc(100vh - 180px);
overflow: auto;
width: 100%;
height: calc(100vh - 180px);
overflow: hidden;
}
</style>