后台:添加查询taskType

This commit is contained in:
luying
2021-06-04 11:01:58 +08:00
parent 95621b827e
commit f77de8eb78
6 changed files with 55 additions and 2 deletions

View File

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