后台:邮件查询

This commit is contained in:
luying
2021-11-29 20:33:36 +08:00
parent 7e46663868
commit c4e4e472d1
13 changed files with 236 additions and 44 deletions

View File

@@ -24,6 +24,13 @@ export default class GameController extends Controller {
return
}
public async getServers() {
const { ctx } = this;
ctx.body = await ctx.service.game.getServers();
return
}
public async getMaintenanceList() {
const { ctx } = this;
const {page, pageSize, sortField, sortOrder, form} = ctx.request.body;