From 150aa8f5c7e19e60e7ae31eecc9744617b005102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Wed, 31 Dec 2025 02:05:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=AA=E5=AE=9E=E5=90=8D=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=94=B6=E7=A4=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/GiveGift.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/api/model/GiveGift.php b/application/api/model/GiveGift.php index 5eac6f0c..463cdaf0 100644 --- a/application/api/model/GiveGift.php +++ b/application/api/model/GiveGift.php @@ -73,10 +73,10 @@ class GiveGift extends Model $is_real = db::name('user_auth')->where('mobile' , $mobile)->field('id,is_real')->find(); if($is_real){ if($is_real['is_real'] != 1){ - return ['code' => 0, 'msg' => '收礼用户中有未实名', 'data' => null]; + return ['code' => 0, 'msg' => '该用户未实名,暂不支持收礼', 'data' => null]; } }else{ - return ['code' => 0, 'msg' => '收礼用户中有未实名', 'data' => null]; + return ['code' => 0, 'msg' => '该用户未实名,暂不支持收礼', 'data' => null]; } }