活动管理

This commit is contained in:
luying
2021-12-17 11:08:30 +08:00
parent 5b1e3b6cab
commit 8c966aaed7
3 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ export default class ActivityController extends Controller {
public async getActivityGroupTypeList() {
const { ctx } = this;
const { page, pageSize, sortField, sortOrder, groupType, groupTypeName } = ctx.request.body;
const { page, pageSize, sortField, sortOrder, form: {groupType, groupTypeName} } = ctx.request.body;
ctx.body = await ctx.service.activity.getActivityGroupTypeList(page, pageSize, sortField, sortOrder, groupType, groupTypeName);
return
}