change
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* 会务管理列表页统一满屏布局:查询区和分页区固定,表格使用剩余高度并在内部滚动。
|
||||
*/
|
||||
.meeting-list-layout {
|
||||
height: calc(100vh - 84px);
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-search-card {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
margin-top: 0 !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card > .el-card__body {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .ele-table-tool {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .meeting-main-table {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .el-pagination-container {
|
||||
flex: 0 0 52px;
|
||||
min-height: 52px;
|
||||
margin-top: 12px !important;
|
||||
margin-bottom: 0 !important;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-main-table .el-table__body-wrapper {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
@media (max-height: 760px) {
|
||||
.meeting-list-layout > .transition-item {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.meeting-list-layout > .transition-item > .meeting-table-card > .el-card__body {
|
||||
padding-top: 14px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.meeting-list-layout .meeting-table-card .el-pagination-container {
|
||||
flex-basis: 48px;
|
||||
min-height: 48px;
|
||||
margin-top: 8px !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user