This commit is contained in:
aozhiwei 2024-08-02 14:17:19 +08:00
parent 54c2229767
commit 03a885cc90
2 changed files with 6 additions and 1 deletions

View File

@ -33,6 +33,7 @@ class Bigwheel(object):
['award', _common.Award(), '奖励信息'],
['property_chg', _common.PropertyChg(), '属性变更'],
['info', _common.BigwheelInfo(), '转盘信息'],
['!prizes', [_common.BigwheelGrid()], '奖品列表']
]
},
{

View File

@ -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
)
));
}
}