Browse Source

更新创建管理员

evoxwht 2 years ago
parent
commit
1752cf4941
1 changed files with 2 additions and 2 deletions
  1. 2 2
      crmeb/app/services/system/admin/SystemAdminServices.php

+ 2 - 2
crmeb/app/services/system/admin/SystemAdminServices.php

@@ -258,7 +258,7 @@ class SystemAdminServices extends BaseServices
         unset($data['conf_pwd']);
 
         if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
-            return app('json')->fail(400762);
+            throw new AdminException(400762);
         }
 
         if ($this->dao->count(['account' => $data['account'], 'is_del' => 0])) {
@@ -325,7 +325,7 @@ class SystemAdminServices extends BaseServices
             }
 
             if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
-                return app('json')->fail(400762);
+                throw new AdminException(400762);
             }
 
             $adminInfo->pwd = $this->passwordHash($data['pwd']);