From 84273faee13965040fa406077db6791b8c0e949c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Mon, 29 Dec 2025 10:32:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=BF=E9=97=B4=E5=86=85=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/Room.php | 3 ++- application/api/model/UserData.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/application/api/model/Room.php b/application/api/model/Room.php index f13226a2..b5ec153b 100644 --- a/application/api/model/Room.php +++ b/application/api/model/Room.php @@ -2472,7 +2472,8 @@ class Room extends Model } //是否设置开播提醒 - $user_info['is_open_live_remind'] = db::name('vs_user_live_remind')->where(['user_id' => $uid,'remind_user_id' => $user_id])->find() ? 1 : 0; +// $user_info['is_open_live_remind'] = db::name('vs_user_live_remind')->where(['user_id' => $uid,'remind_user_id' => $user_id])->find() ? 1 : 0; + $user_info['is_open_live_remind'] = 0; //用户所属工会 $guild_id = Db::name('vs_guild_user')->where(['user_id'=>$user_id,'delete_time'=>0,'status' => 1])->value('guild_id'); diff --git a/application/api/model/UserData.php b/application/api/model/UserData.php index 84014f5c..9fddbacf 100644 --- a/application/api/model/UserData.php +++ b/application/api/model/UserData.php @@ -367,6 +367,7 @@ class UserData extends Model //生成faceId $faceId = model('Tencent')->getFaceId($orderNo,$real_name,$id_card,$sign,$user_id,$config['tencent_app_id'],$nonceStr); if(isset($faceId['code'])){ + Log::record("实名生成faceId结果:".json_encode($faceId),"info"); return ['code' => 0, 'msg' => $faceId['msg'],'data' =>null]; }