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; +}