flyzto 1 개월 전
부모
커밋
dbde1f19e2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      server/routes/pstery.js

+ 2 - 2
server/routes/pstery.js

@@ -96,7 +96,7 @@ router.get('/get_games_relation', (req, res) => {
 
 // 获取中单方案
 router.get('/get_solutions', (req, res) => {
-  const { win_min, with_events, mk } = req.query;
+  const { win_min, with_events, show_lower, mk } = req.query;
   Games.getSolutions({
     win_min: win_min ? +win_min : undefined,
     with_events: with_events === 'true',
@@ -113,7 +113,7 @@ router.get('/get_solutions', (req, res) => {
 
 // 获取中单方案并按照比赛分组
 router.get('/get_games_solutions', (req, res) => {
-  const { win_min, with_events, mk, tp, sk } = req.query;
+  const { win_min, with_events, show_lower, mk, tp, sk } = req.query;
   Games.getGamesSolutions({
     win_min: win_min ? +win_min : undefined,
     with_events: with_events === 'true',