|
|
@@ -83,8 +83,8 @@
|
|
|
@foreach ($list as $row)
|
|
|
<tr>
|
|
|
<td><a href='/admin/global/id_find?UserID={{ $row->UserID }}'>{{ $row->GameID }}</a></td>
|
|
|
- <td>{{ ($row->WinScore - $row->LostScore)/\App\Http\helper\NumConfig::NUM_VALUE }}</td>
|
|
|
- <td>{{ $row->TotalBet ? intval(($row->WinScore - $row->LostScore)/$row->TotalBet*100) : 0 }}%</td>
|
|
|
+ <td>{{ ($row->WinScore + $row->LostScore)/\App\Http\helper\NumConfig::NUM_VALUE }}</td>
|
|
|
+ <td>{{ $row->TotalBet ? intval(($row->WinScore + $row->LostScore)/$row->TotalBet*100) : 0 }}%</td>
|
|
|
<td>{{ $row->TotalRecharge - ($row->TotalWithdraw + $row->Score + $row->WithDrawWaitAudit)/\App\Http\helper\NumConfig::NUM_VALUE}}</td>
|
|
|
<td>{{ $row->sameRW }}</td>
|
|
|
<td>{{ $row->KindID === -1 ? '离线' : $gameServerNames[$row->KindID] ?? '' }}</td>
|