diff --git a/doc/Bigwheel.py b/doc/Bigwheel.py index 8acb8529..620e9899 100644 --- a/doc/Bigwheel.py +++ b/doc/Bigwheel.py @@ -33,6 +33,7 @@ class Bigwheel(object): ['award', _common.Award(), '奖励信息'], ['property_chg', _common.PropertyChg(), '属性变更'], ['info', _common.BigwheelInfo(), '转盘信息'], + ['!prizes', [_common.BigwheelGrid()], '奖品列表'] ] }, { diff --git a/webapp/controller/BigwheelController.class.php b/webapp/controller/BigwheelController.class.php index c59186f1..03168ed5 100644 --- a/webapp/controller/BigwheelController.class.php +++ b/webapp/controller/BigwheelController.class.php @@ -273,7 +273,11 @@ class BigwheelController extends BaseAuthedController { myself()->_rspData(array( 'award' => $this->awardService->toDto(), 'property_chg' => $this->propertyChgService->toDto(), - 'info' => $info + 'info' => $info, + 'prizes' => array( + $grid1, + $grid2 + ) )); } }