Skip to content

Commit

Permalink
修复无法删除用户组用户的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Dec 29, 2018
1 parent df7a43e commit 3cf7a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export async function getFullGroupOne(id) {
}

export async function removeGroupUser(group_id, ids) {
return $http.post('System_AuthGroup.removeGroupUser', {group_id: group_id, id: id});
return $http.post('System_AuthGroup.removeGroupUser', {group_id: group_id, ids: ids});
}

export async function getGroupUserList(id, page_size, page_num, keyword) {
Expand Down Expand Up @@ -144,4 +144,4 @@ export async function getLogList(page_size, page_num, keyword, search_date) {
keyword: keyword,
search_date: search_date
});
}
}

0 comments on commit 3cf7a89

Please sign in to comment.