소스 검색

pagination:fix bug Pagination page number display problem

openks 8 년 전
부모
커밋
78ec098960
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/pagination/src/pager.vue

+ 2 - 2
packages/pagination/src/pager.vue

@@ -96,11 +96,11 @@
         let showNextMore = false;
 
         if (pageCount > pagerCount) {
-          if (currentPage > pagerCount - 2) {
+          if (currentPage > pagerCount - 3) {
             showPrevMore = true;
           }
 
-          if (currentPage < pageCount - 2) {
+          if (currentPage < pageCount - 3) {
             showNextMore = true;
           }
         }