彭俊 6 年 前
コミット
47c0086487
1 ファイル変更6 行追加6 行削除
  1. 6 6
      Application/Sports/Controller/MatchVer.php

+ 6 - 6
Application/Sports/Controller/MatchVer.php

@@ -166,8 +166,8 @@ class MatchVer extends Controller
             foreach($match_status as $k=>$v){
                 foreach($oddsData as $kk=>$vv){
                     if($v['match_id'] == $vv['match_id'] and $v['status'] > 1){
-                        $vv['status'] = 2;//赛事状态异常
-                        $vv['ver_mark'] = '赛事状态变更或数据异常';
+                        $vv['status'] = 3;//赛事状态异常
+                        $vv['ver_mark'] = '玩法盘口已关闭';
                         $status_err[] = $vv;
                         //排除当前投注项
                         unset($oddsData[$kk]);
@@ -199,8 +199,8 @@ class MatchVer extends Controller
             //赋值异常 投注
             if(!empty($status_pass)){
                 foreach($status_pass as $k=>$v){
-                    $v['status'] = 3;//赔率数据异常
-                    $v['ver_mark'] = '玩法盘口已关闭或赔率有更新';
+                    $v['status'] = 4;//赔率数据异常
+                    $v['ver_mark'] = '赔率有更新';
                     $odds_err[] = $v;
                 }
             }
@@ -215,8 +215,8 @@ class MatchVer extends Controller
                     //获取异常
                     if($v['match_id'] == $vv->match_id ){
                         if($v['home_score'] != $vv->home_score || $v['guest_score'] != $vv->guest_score){
-                            $v['status'] = 4;//比分数据异常
-                            $v['ver_mark'] = '进球/比分有变更或数据异常';
+                            $v['status'] = 2;//比分数据异常
+                            $v['ver_mark'] = '比分发生变化';
                             $score_err[] = $v;
                             unset($odds_pass[$k]);
                         }