-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(mis): 修复平台管理页面用户列表的用户统计错误 #1013
Conversation
🦋 Changeset detectedLatest commit: dfbfd9f The changes in this PR will be included in the next version bump. This PR includes changesets to release 13 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1013 +/- ##
=======================================
Coverage 68.36% 68.36%
=======================================
Files 133 133
Lines 3935 3935
Branches 521 521
=======================================
Hits 2690 2690
Misses 1148 1148
Partials 97 97 ☔ View full report in Codecov by Sentry. |
### 现状: 1. 平台管理页面下的AllUserTable里的数据接口是后端分页,但是前端对三个tab的数据统计是根据该分页接口的该页数据过滤得到的,是不准确的。 2. 之前的GetPlatformUsersCounts是用来适配GetAllUsers后端分页接口,但在此处#905 被删去,原因在于当用户填入了筛选项时,数据统计的接口并不是筛选后的情况。 ### 改动 1. 恢复AllUserTable里的GetPlatformUsersCounts接口,确保统计数据准确, 2. 同时给该接口增加过滤参数,确保用户输入过滤项时的数据实时更新。
现状:
改动