ios:审核服判断逻辑

This commit is contained in:
luying
2022-06-23 09:39:46 +08:00
parent 5e5b052aa0
commit f105c79837
9 changed files with 77 additions and 6 deletions

View File

@@ -78,6 +78,14 @@ export default class GameController extends Controller {
return
}
public async switchServerReview() {
const { ctx } = this;
const { id, isReview } = ctx.request.body;
ctx.body = await ctx.service.game.switchServerReview(id, isReview);
return
}
public async getOrderlist() {
const { ctx } = this;
const { page, pageSize, sortField, sortOrder, form } = ctx.request.body;