彭俊 6 роки тому
батько
коміт
754f56025a

+ 1 - 1
app/Http/Model/StBqResult.php

@@ -56,7 +56,7 @@ class StBqResult extends Model
         //如果结果表有数据,则获取结果表没有的赛事
         foreach ($matchData as $k=>$v){
             foreach ($matchData_r as $kk=>$vv){
-                if($v['id'] == $vv['match_id']){
+                if($v['match_id'] == $vv['match_id']){
                     unset($matchData[$k]);
                 }
             }

+ 1 - 1
app/Http/Model/StLqResult.php

@@ -62,7 +62,7 @@ class StLqResult extends Model
             //如果结果表有数据,则获取结果表没有的赛事
             foreach ($matchData as $k=>$v){
                 foreach ($matchData_r as $kk=>$vv){
-                    if($v['id'] == $vv['match_id']){
+                    if($v['match_id'] == $vv['match_id']){
                         unset($matchData[$k]);
                     }
                 }

+ 1 - 1
app/Http/Model/StWqResult.php

@@ -56,7 +56,7 @@ class StWqResult extends Model
         //如果结果表有数据,则获取结果表没有的赛事
         foreach ($matchData as $k=>$v){
             foreach ($matchData_r as $kk=>$vv){
-                if($v['id'] == $vv['match_id']){
+                if($v['match_id'] == $vv['match_id']){
                     unset($matchData[$k]);
                 }
             }

+ 1 - 1
app/Http/Model/StZqResult.php

@@ -55,7 +55,7 @@ class StZqResult extends Model
         //如果结果表有数据,则获取结果表没有的赛事
         foreach ($matchData as $k=>$v){
             foreach ($matchData_r as $kk=>$vv){
-                if($v['id'] == $vv['match_id']){
+                if($v['match_id'] == $vv['match_id']){
                     unset($matchData[$k]);
                 }
             }