This commit is contained in:
yangduo 2025-01-16 17:33:09 +08:00
parent c6218d797e
commit e1bb2cc715

View File

@ -720,6 +720,8 @@ class RechargeController
$coin_num = $addreward->getCoinNum($account_id); $coin_num = $addreward->getCoinNum($account_id);
$diamond_num = $addreward->getDiamondNum($account_id); $diamond_num = $addreward->getDiamondNum($account_id);
$adfree = $addreward->getAdfree($account_id); $adfree = $addreward->getAdfree($account_id);
$privilege = new classes\Privilege();
$plustimes = $privilege->getCoinTimesPlus($account_id);
$user_purchase = array( $user_purchase = array(
'errcode' => 0, 'errcode' => 0,
'errmsg' => '', 'errmsg' => '',
@ -728,6 +730,7 @@ class RechargeController
'coin_nums' => $coin_num, 'coin_nums' => $coin_num,
'diamond_nums' => $diamond_num, 'diamond_nums' => $diamond_num,
'adfree' => $adfree, 'adfree' => $adfree,
'vip_plustime' => $plustimes,
'item_list' => $item_list, 'item_list' => $item_list,
'all_item_list' => $all_item_list, 'all_item_list' => $all_item_list,
); );