巡乐会抽奖接口提交.-bug修改

This commit is contained in:
2025-09-05 17:50:50 +08:00
parent f7e2d72369
commit 9b7ba5dc35

View File

@@ -301,13 +301,13 @@ class UserZone extends Model
return ['code' => 0, 'msg' => '请重试,', 'data' => null];
}
//评论別人的帖子- 每天第一条奖励【完成任务】
if($info['user_id'] != $uid){
// if($info['user_id'] != $uid){
//今天的第一条评论奖励
$first_comment = db::name('user_zone_comment')->where(['user_id' => $uid, 'createtime' => ['between', [strtotime(date('Y-m-d 00:00:00')), strtotime(date('Y-m-d 23:59:59'))]]])->count();
if ($first_comment ==1) {
model('DailyTasks')->tasks_complete($uid,5);
}
}
// }
//增加评论数量
$reslut = db::name('user_zone')->where('id', $zid)->setInc('comment_num', 1);
if (!$reslut) {