This commit is contained in:
bb_pan 2025-12-22 17:46:56 +08:00
parent 509c1d4172
commit c0f33de4b3
2 changed files with 6 additions and 2 deletions

View File

@ -201,4 +201,8 @@ aside {
.el-table__fixed-right {
z-index: 99;
}
.my-table {
min-height: 546px;
}

View File

@ -73,7 +73,7 @@
</el-row> -->
<el-card class="content-box">
<div >
<el-table v-loading="loading" :data="tableData" border stripe height="700px">
<el-table v-loading="loading" :data="tableData" border stripe class="my-table">
<el-table-column label="序号" align="center" width="80" type="index">
<template slot-scope="scope">
<span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
@ -327,7 +327,7 @@ export default {
.content-box {
border-radius: 8px;
height: calc(100vh - 210px);
// height: calc(100vh - 210px);
display: flex;
flex-direction: column;
overflow: hidden;