This commit is contained in:
aozhiwei 2024-08-01 17:12:56 +08:00
parent 19637fd825
commit aaa0003b64

View File

@ -193,6 +193,18 @@ class BigwheelController extends BaseAuthedController {
array_push($data['grid_list'], $grid1);
array_push($data['grid_list'], $grid2);
myself()->_callModelStatic('MidData', 'setData', $key, json_encode($data));
{
$priceInfo = $this->getPriceInfo($data['drawed_times']);
if (empty($priceInfo)) {
myself()->_rspErr(500, 'server internal error');
return;
}
$info = array();
$this->fillInfo($info, $data, $priceInfo);
myself()->_rspData(array(
'info' => $info
));
}
}
public function buyS()