1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 15:38:15 +00:00

sysadmin reconstruct user page (#4030)

* sysadmin reconstruct user page

* [system admin] users: refactored it
This commit is contained in:
Leo
2019-10-28 10:29:20 +08:00
committed by Daniel Pan
parent 344f50cbda
commit 852fe1b8ee
35 changed files with 3254 additions and 40 deletions

View File

@@ -1247,8 +1247,6 @@ export const Utils = {
},
hasNextPage(curPage, perPage, totalCount) {
// when curPage * perPage >= totalCount, do not have next page.
// so hasNextPage = true, when curPage * perPage < totalCount
return curPage * perPage < totalCount;
}