From c2090f4271fd9a1a14245f3fa30c2e27e5c13824 Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期五, 23 七月 2021 09:21:19 +0800
Subject: [PATCH] feat(每页记录数选择项调整): 每页记录数选择项高调整为15, 30, 50, 100, 200, 500

---
 src/components/Pagination/index.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue
index 4f19f42..a35bc8b 100644
--- a/src/components/Pagination/index.vue
+++ b/src/components/Pagination/index.vue
@@ -32,12 +32,12 @@
     },
     limit: {
       type: Number,
-      default: 20
+      default: 15
     },
     pageSizes: {
       type: Array,
       default() {
-        return [5, 10, 20, 30, 50]
+        return [15, 30, 50, 100, 200, 500]
       }
     },
     layout: {

--
Gitblit v1.8.0