From 28b4c9bb761f291dd6a4ab8899373e69ef95a92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Tue, 23 Dec 2025 16:44:38 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=B9=B8=E8=BF=90=E5=B8=81=E5=85=A8?= =?UTF-8?q?=E9=BA=A6=E9=80=81=20=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/Lottery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/model/Lottery.php b/application/api/model/Lottery.php index 712ddaf1..fa390e34 100644 --- a/application/api/model/Lottery.php +++ b/application/api/model/Lottery.php @@ -66,7 +66,7 @@ class Lottery extends Model // 1. 记录礼物赠送 $giftRecord = [ 'send_uid' => $send_uid, - 'recv_uid' => $recv_uid, + 'recv_uid' => $to_id, 'gift_id' => $gift_id, 'gift_gold' => $gift_price, 'recv_gold' => $gift_price /2 , From ef86241ad420848f14174c0bace14b30f6121635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Tue, 23 Dec 2025 17:23:09 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=85=BE=E8=AE=AF=E7=BE=A4=E7=BB=84=20?= =?UTF-8?q?=E9=82=80=E8=AF=B7=E5=A5=BD=E5=8F=8B=E5=92=8C=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=A5=BD=E5=8F=8B=20=E4=BF=AE=E6=94=B9=E4=B8=BA=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/Tencent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/model/Tencent.php b/application/api/model/Tencent.php index 05465789..0bba6822 100644 --- a/application/api/model/Tencent.php +++ b/application/api/model/Tencent.php @@ -356,7 +356,7 @@ class Tencent extends Model public function delete_group_member($rid, $uid){ $config = get_system_config(); $tencentyun_im_appid = $config['tencentyun_im_appid']; - $im_admin = 'administrator'; + $im_admin = '管理员'; $admin_sig = $this->tencent_user_sig_info($im_admin); $rand = rand(111111111,9999999999); $postUrl = 'https://console.tim.qq.com/v4/group_open_http_svc/delete_group_member?sdkappid='.$tencentyun_im_appid.'&identifier='.$im_admin.'&usersig='.$admin_sig.'&random='.$rand.'&contenttype=json';