根据比分算赛果

pull/1/head
jcadmin 2024-12-14 17:41:54 +08:00
parent 7408031a64
commit db43f9b026
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class ZqMatch extends BaseModel
if ($homeScore > $awayScore) { if ($homeScore > $awayScore) {
return '胜'; return '胜';
} }
if ($homeScore > $awayScore) { if ($awayScore > $homeScore) {
return '负'; return '负';
} }
return '平'; return '平';