diff --git a/src/fvcomponents/fvPagination/index.vue b/src/fvcomponents/fvPagination/index.vue index 187aebe..213e1aa 100644 --- a/src/fvcomponents/fvPagination/index.vue +++ b/src/fvcomponents/fvPagination/index.vue @@ -30,12 +30,12 @@ const props = defineProps({ }, pageSize: { type: Number, - default: 10, + default: 20, }, pageSizes: { type: Object, default(rawProps) { - return [10, 15, 20, 30, 50] + return [10, 15, 20, 30, 50,100] }, }, small: { @@ -58,7 +58,7 @@ const total = ref(0) //对应页数 const currentPage = ref(1) //每页多少条 -const pageSize = ref(10) +const pageSize = ref(20) //默认每页多少条的数组 const pageSizes = ref([]) //是否使用小型分页样式 diff --git a/src/fvcomponents/fvTable/index.vue b/src/fvcomponents/fvTable/index.vue index 6014b71..e6d874c 100644 --- a/src/fvcomponents/fvTable/index.vue +++ b/src/fvcomponents/fvTable/index.vue @@ -1,6 +1,7 @@