Browse Source

修复了分页栏功能异常,定位异常

napier 3 years ago
parent
commit
8bf8723f7b
1 changed files with 2 additions and 10 deletions
  1. 2 10
      src/components/mobileBar.vue

+ 2 - 10
src/components/mobileBar.vue

@@ -408,21 +408,14 @@ export default {
      * @description: 通知列表总数目
      * @description: 通知列表总数目
      */
      */
     rows: function () {
     rows: function () {
-      return this.listData.notice.length
+      return this.listData.current.length
     },
     },
 
 
     /**
     /**
      * @description: 最高伸展等级时通知列表每页显示数目
      * @description: 最高伸展等级时通知列表每页显示数目
      */
      */
     perPage: function () {
     perPage: function () {
-      return Math.floor((this.maxHeight - 34 - 16 - 24) / 42)
-    },
-
-    /**
-     * @description: 中等伸展等级时通知列表单页显示数目
-     */
-    onePage: function () {
-      return Math.floor((this.maxHeight - 34 - 16 - 24) / 42)
+      return Math.floor((this.maxHeight - 24 - 9 - 34 - 10) / 42)
     }
     }
   },
   },
 
 
@@ -491,7 +484,6 @@ export default {
 }
 }
 #pagin-div {
 #pagin-div {
   position: relative;
   position: relative;
-  /* bottom: 0; */
   left: 50%;
   left: 50%;
   transform: translateX(-50%);
   transform: translateX(-50%);
 }
 }