修复更新状态参数类型

This commit is contained in:
hanhh
2021-06-13 18:45:05 +08:00
parent a53f788886
commit 95221e2b1d
2 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -238,7 +238,10 @@ export default (app: Router) => {
const logger: Logger = Container.get('logger');
try {
const cronService = Container.get(CronService);
const data = await cronService.status(req.body);
const data = await cronService.status({
...req.body,
status: parseInt(req.body.status),
});
return res.send({ code: 200, data });
} catch (e) {
logger.error('🔥 error: %o', e);