diff --git a/webapp/controller/BigwheelController.class.php b/webapp/controller/BigwheelController.class.php index 10a6cf10..836ae737 100644 --- a/webapp/controller/BigwheelController.class.php +++ b/webapp/controller/BigwheelController.class.php @@ -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()