zs 4 月之前
父节点
当前提交
46d2e1f6e5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/controller/match/matchExt.controller.ts

+ 1 - 1
src/controller/match/matchExt.controller.ts

@@ -111,7 +111,7 @@ export class MatchExtController implements BaseController {
     const match_id = get(data, 'match_id');
     await this.service.checkMatchStatus(match_id, '1');
     await this.service.checkMatchExtStatus(match_id, '0');
-    await this.matchService.update({ id: match_id }, { status: '2' });
+    await this.matchService.update({ id: match_id }, { match_status: '2' });
     await this.service.update({ match_id }, { status: '1' });
     await this.matchRegService.update({ match_id, ext_status: '0', status: '1' }, { ext_status: '1', status: '0' });
     return 'ok';