|
|
@@ -108,7 +108,7 @@
|
|
|
<el-pagination
|
|
|
style="margin-top: 5px; padding-bottom: 10px"
|
|
|
:current-page="pagination.currentPage"
|
|
|
- :page-sizes="[10, 20, 30, 50]"
|
|
|
+ :page-sizes="[10, 20, 30, 50, 100]"
|
|
|
:page-size="pagination.pageSize"
|
|
|
layout="prev,pager,next,jumper,sizes,->,total"
|
|
|
:total="categoryList.length"
|
|
|
@@ -145,7 +145,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
pagination: {
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 100,
|
|
|
currentPage: 1
|
|
|
},
|
|
|
|
|
|
@@ -220,7 +220,7 @@ export default {
|
|
|
// 选择器切换
|
|
|
onSelectorChange() {
|
|
|
this.pagination = {
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 100,
|
|
|
currentPage: 1
|
|
|
}
|
|
|
},
|