修改表格高度

This commit is contained in:
guanj
2025-10-21 16:11:00 +08:00
parent 29b5cfa4db
commit 269d941828
9 changed files with 11 additions and 11 deletions

View File

@@ -20,12 +20,12 @@
></iframe>
</div>
<el-card class="bottom-container " style="flex: 1">
<el-card class="bottom-container " style="flex: 1;min-height: 165px;">
<div class="buttonBox">
<el-button type="primary" icon="el-icon-Aim">复位</el-button>
</div>
<div class="tableBox">
<Table ref="tableRef" isGroup height="100%"></Table>
<Table ref="tableRef" height="100%"></Table>
</div>
</el-card>
</div>
@@ -59,7 +59,7 @@ const tableStore: any = new TableStore({
{
field: 'index',
title: '序号',
width: '60',
width: '80',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}