diff --git a/app/controller/api/Vip_rewardController.php b/app/controller/api/Vip_rewardController.php index 3f1e420..61cbab5 100644 --- a/app/controller/api/Vip_rewardController.php +++ b/app/controller/api/Vip_rewardController.php @@ -304,12 +304,12 @@ class Vip_rewardController } $UserReward = UserReward::where('memo', '首次VIP'.$vip_id.'等级奖励')->where('user_id', $user_id)->get(); //判断是否有 - if ($UserReward->count() > 0) { - UserRewardDao::base($user_id, 6, $money, 'VIP'.$vip_id.'等级奖励'); - }else{ - UserRewardDao::base($user_id, 6, $new_money, '首次VIP'.$vip_id.'等级奖励'); + // if ($UserReward->count() > 0) { + // UserRewardDao::base($user_id, 6, $money, 'VIP'.$vip_id.'等级奖励'); + // }else{ + // UserRewardDao::base($user_id, 6, $new_money, '首次VIP'.$vip_id.'等级奖励'); - } + // } return ApiResponseApp::success('领取成功'); }