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]; } }