This commit is contained in:
yangduo 2025-01-13 11:04:28 +08:00
parent e30dc1d8aa
commit d137d78165

View File

@ -627,11 +627,11 @@ class RechargeController
$firstrecharge = $rechargerow['first_data']; $firstrecharge = $rechargerow['first_data'];
} }
if ($rechargerow['vip_info'] != null && $rechargerow['vip_info'] != '') { if ($rechargerow['vip_info'] != null && $rechargerow['vip_info'] != '') {
$vipinfo = json_encode($rechargerow['vip_info']); $vipinfo = json_decode($rechargerow['vip_info']);
} }
if ($rechargerow['daily_purchase'] != null && $rechargerow['daily_purchase'] != '') { if ($rechargerow['daily_purchase'] != null && $rechargerow['daily_purchase'] != '') {
$dailypurchase = json_encode($rechargerow['daily_purchase']); $dailypurchase = json_decode($rechargerow['daily_purchase']);
} }
} }