This commit is contained in:
2025-10-05 03:09:15 +08:00
parent 57f1a7f121
commit f36dc4f3d3
15 changed files with 1479 additions and 612 deletions

View File

@@ -0,0 +1,124 @@
<template>
<div class="list-layout">
<!-- 顶部搜索区域 -->
<div class="search-section">
<slot name="search"></slot>
</div>
<!-- 表格区域 - 可滚动 -->
<div class="table-section">
<slot name="table"></slot>
</div>
<!-- 固定分页区域 -->
<div class="pagination-section">
<slot name="pagination"></slot>
</div>
</div>
</template>
<script>
export default {
name: 'ListLayout',
props: {
// 可以添加一些配置属性
height: {
type: String,
default: 'calc(100vh - 84px)'
}
}
}
</script>
<style scoped>
/* 主容器布局 */
.list-layout {
display: flex;
flex-direction: column;
height: calc(100vh - 84px); /* 减去头部导航高度 */
overflow: hidden;
}
/* 搜索区域 - 固定在顶部 */
.search-section {
flex-shrink: 0;
background: #fff;
padding: 20px;
border-bottom: 1px solid #e4e7ed;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 表格区域 - 可滚动 */
.table-section {
flex: 1;
overflow: auto;
padding: 0 20px;
background: #fff;
}
/* 固定分页区域 */
.pagination-section {
flex-shrink: 0;
background: #fff;
padding: 15px 20px;
border-top: 1px solid #e4e7ed;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
position: sticky;
bottom: 0;
z-index: 10;
}
/* 表格区域滚动条样式 */
.table-section::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.table-section::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.table-section::-webkit-scrollbar-thumb {
background: #c0c0c0;
border-radius: 3px;
}
.table-section::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* 确保表格在容器内正确显示 */
.table-section .el-table {
width: 100%;
}
/* 分页组件样式优化 */
.pagination-section .pagination-container {
display: flex;
justify-content: center;
align-items: center;
background: #fff;
border-radius: 4px;
padding: 10px 0;
}
/* 响应式设计 */
@media (max-width: 768px) {
.list-layout {
height: calc(100vh - 50px); /* 移动端调整高度 */
}
.search-section {
padding: 15px;
}
.table-section {
padding: 0 15px;
}
.pagination-section {
padding: 10px 15px;
}
}
</style>

View File

@@ -31,12 +31,12 @@ export default {
},
limit: {
type: Number,
default: 15
default: 10
},
pageSizes: {
type: Array,
default() {
return [15, 50, 100, 200,1]
return [10, 50, 100, 200,1000]
}
},
// 移动端页码按钮的数量端默认值5