-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mis): 修复平台管理页面用户列表的用户统计错误 (#1013)
### 现状: 1. 平台管理页面下的AllUserTable里的数据接口是后端分页,但是前端对三个tab的数据统计是根据该分页接口的该页数据过滤得到的,是不准确的。 2. 之前的GetPlatformUsersCounts是用来适配GetAllUsers后端分页接口,但在此处#905 被删去,原因在于当用户填入了筛选项时,数据统计的接口并不是筛选后的情况。 ### 改动 1. 恢复AllUserTable里的GetPlatformUsersCounts接口,确保统计数据准确, 2. 同时给该接口增加过滤参数,确保用户输入过滤项时的数据实时更新。
- Loading branch information
1 parent
afad0c5
commit 1a1189a
Showing
6 changed files
with
48 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@scow/mis-server": patch | ||
"@scow/mis-web": patch | ||
--- | ||
|
||
管理系统 AllUserTable 恢复计数接口并且新增筛选参数 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@scow/grpc-api": patch | ||
--- | ||
|
||
GetPlatformUsersCounts 新增 id_or_name 参数 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters