From 4ade1cde33067670b31e4c8a8c7f6ae9c860573e Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Sun, 22 Feb 2026 19:02:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=86=E9=A1=B5=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/collect/commemorativeCoin/index.vue | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/src/views/collect/commemorativeCoin/index.vue b/src/views/collect/commemorativeCoin/index.vue index 8b73c8e..1592108 100644 --- a/src/views/collect/commemorativeCoin/index.vue +++ b/src/views/collect/commemorativeCoin/index.vue @@ -43,7 +43,7 @@
- + --> - - + + @@ -87,7 +87,14 @@ - +
@@ -369,6 +376,11 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) @@ -497,4 +509,9 @@ getList() :deep(.el-carousel__arrow:hover) { background-color: rgba(0, 0, 0, 0.7); } + +/* 确保表格内容区域可以滚动 */ +:deep(.el-table__body-wrapper) { + overflow-y: auto !important; +}