2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 14:47:18 +08:00

feat: 优化默认分页条数

This commit is contained in:
耗子
2024-10-15 17:51:25 +08:00
parent b718c11f3a
commit 117ccabbb5
19 changed files with 39 additions and 38 deletions

View File

@@ -126,11 +126,11 @@ const selectedRowKeys = ref<any>([])
const pagination = reactive({
page: 1,
pageCount: 1,
pageSize: 15,
pageSize: 20,
itemCount: 0,
showQuickJumper: true,
showSizePicker: true,
pageSizes: [15, 30, 50, 100]
pageSizes: [20, 50, 100, 200]
})
const handleDelete = (id: number) => {