From 0e1c247f0e1eba4145d44bbb45bf137cacd2163e Mon Sep 17 00:00:00 2001 From: wkc <978997012@qq.com> Date: Fri, 27 Feb 2026 10:52:38 +0800 Subject: [PATCH] =?UTF-8?q?style:=20Material=20Design=20-=20=E6=89=81?= =?UTF-8?q?=E5=B9=B3=E5=8C=96=E5=88=86=E9=A1=B5=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ccdiProject/components/ProjectTable.vue | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue index 2743c5f..ee22a7d 100644 --- a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue +++ b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue @@ -368,15 +368,33 @@ export default { } } -// 分页样式优化 +// 分页样式优化 - Material Design 风格 :deep(.el-pagination) { - margin-top: 16px; + margin-top: 24px; text-align: right; + // 扁平化按钮 + .btn-prev, + .btn-next, + .el-pager li { + border: none; + background-color: transparent; + + &:hover { + background-color: #f5f5f5; + } + } + + .el-pager li.active { + background-color: #1890ff; + color: white; + border-radius: 4px; + } + .el-pagination__total, .el-pagination__sizes, .el-pagination__jump { - color: #606266; + color: #666; } }