Browse Source

修改上级

lizhen_gitee 8 months ago
parent
commit
bb3770c5ec
1 changed files with 2 additions and 2 deletions
  1. 2 2
      application/admin/controller/user/User.php

+ 2 - 2
application/admin/controller/user/User.php

@@ -157,7 +157,7 @@ class User extends Backend
                 if ($params['mobile']) {
                     $exists = db('user')->where('mobile', $params['mobile'])->where('id', '<>', $row['id'])->find();
                     if ($exists) {
-                        $this->error('手机号已经被使用');
+                        $this->error('手机号已经被其他人使用');
                     }
                 }
                 //推荐人查询
@@ -170,7 +170,7 @@ class User extends Backend
                         $this->error('不存在推荐人');
                     }
                     if ($intro_user['intro_uid'] == $row['id']) {
-                        $this->error('不能填写下级邀请码为推荐人');
+                        $this->error('不能填写下级邀请码为推荐人');
                     }
                 }
                 Db::startTrans();