后台:军团管理成员管理

This commit is contained in:
luying
2021-12-16 14:36:05 +08:00
parent 15b9d9f97a
commit 1628fd50b0
9 changed files with 79 additions and 12 deletions

View File

@@ -130,6 +130,12 @@ export default class UserController extends Controller {
ctx.body = await ctx.service.users.getGuildList(page, pageSize, sortField, sortOrder, form);
}
public async getMembersByGuildCode() {
const { ctx } = this;
const { code } = ctx.request.body;
ctx.body = await ctx.service.users.getMembersByGuildCode(code);
}
public async deleteEquip() {
const { ctx } = this;
const { selectedRowKeys: roleIdAndSeqIds } = ctx.request.body;