|
@@ -29,7 +29,7 @@
|
|
|
<el-pagination
|
|
|
:current-page="currentPage"
|
|
|
:page-size="pageSize"
|
|
|
- :page-sizes="[15, 30, 45, 70, 100]"
|
|
|
+ :page-sizes="[50, 100, 500, 1000, 5000, 10000]"
|
|
|
:total="totalSize"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
style="margin-top: 5px"
|
|
@@ -64,7 +64,7 @@ export default {
|
|
|
const totalSize = ref(0)
|
|
|
const list = ref([])
|
|
|
|
|
|
- const pageSize = ref(30)
|
|
|
+ const pageSize = ref(50)
|
|
|
const currentPage = ref(1)
|
|
|
const handleSizeChange = (val) => {
|
|
|
pageSize.value = val
|