后台:运营活动后台

This commit is contained in:
luying
2021-05-19 16:24:27 +08:00
parent 0c39b9ebb7
commit 91af65259c
14 changed files with 178 additions and 6 deletions

View File

@@ -7,4 +7,10 @@ export default class GameController extends Controller {
ctx.body = await ctx.service.game.getServerEnv();
return
}
public async getServerListByEnv() {
const { ctx } = this;
ctx.body = await ctx.service.game.getServerListByEnv();
return
}
}