This commit is contained in:
aozhiwei 2022-11-21 12:13:00 +08:00
parent a2e2fdcad4
commit 03b5f56ccc

View File

@ -158,7 +158,7 @@ class BattleController extends BaseAuthedController {
public function reportSettlement()
{
$battleUuid = getReqVal('battle_uuid', '');
$data = json_decode(file_get_contents('php://input'), true);
$data = file_get_contents('php://input');
BattleSettlement::add($battleUuid, $data);
myself()->_rspOk();
}