This commit is contained in:
aozhiwei 2024-08-22 11:38:22 +08:00
parent 6011bb933f
commit adbb0ea437
2 changed files with 9 additions and 5 deletions

View File

@ -337,13 +337,13 @@ class BigwheelController extends BaseAuthedController {
myself()->_rspData(array( myself()->_rspData(array(
'award' => $this->awardService->toDto(), 'award' => $this->awardService->toDto(),
'property_chg' => $this->propertyChgService->toDto(), 'property_chg' => $this->propertyChgService->toDto(),
'info' => $info 'info' => $info
)); ));
myself()->_fireEvent('Bigwheel', 'onBuyOk', array( myself()->_fireEvent('Bigwheel', 'onBuyOk',
'grid_id' => $gridId, $gridId,
'buy_price' => $gridRef['buy_price'], $gridRef['buy_price']
)); );
} }
private function getMidDataKey() private function getMidDataKey()

View File

@ -12,6 +12,10 @@ class Bigwheel
public static function onBuyOk($gridId, $buyPrice) public static function onBuyOk($gridId, $buyPrice)
{ {
myself()->_addTgLog('Bigwheel.buyOk', array(
'gridId' => $gridId,
'buyPrice' => $buyPrice
));
} }
} }