fix: 修复首次关联手机号时的逻辑错误

This commit is contained in:
lingling 2025-03-01 15:48:55 +08:00
parent 3c0e58a90a
commit 3d7865aef6
2 changed files with 2 additions and 2 deletions

View File

@ -118,6 +118,7 @@ class TaskController
// 如果该用户没有关联手机号,首次关联赠送积分
if (UserPhone::where('user_id', $user_id)->count() == 0) {
UserRewardDao::base($user_id, 4, 50, '首次关联手机号送50积分');
}
$UserPhone = new UserPhone();
$UserPhone->phone = $phone;
$UserPhone->user_id = $user_id;
@ -126,7 +127,6 @@ class TaskController
$UserPhone->time = 0;
$UserPhone->last_time = time();
$UserPhone->save();
}
} else {
// 本地已存在手机号,更新用户信息
// $UserPhone->user_id = $user_id;

Binary file not shown.