|
|
@@ -257,6 +257,10 @@ class SystemAdminServices extends BaseServices
|
|
|
}
|
|
|
unset($data['conf_pwd']);
|
|
|
|
|
|
+ if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
|
|
|
+ return app('json')->fail(400762);
|
|
|
+ }
|
|
|
+
|
|
|
if ($this->dao->count(['account' => $data['account'], 'is_del' => 0])) {
|
|
|
throw new AdminException(400596);
|
|
|
}
|
|
|
@@ -319,6 +323,11 @@ class SystemAdminServices extends BaseServices
|
|
|
if ($data['conf_pwd'] != $data['pwd']) {
|
|
|
throw new AdminException(400264);
|
|
|
}
|
|
|
+
|
|
|
+ if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
|
|
|
+ return app('json')->fail(400762);
|
|
|
+ }
|
|
|
+
|
|
|
$adminInfo->pwd = $this->passwordHash($data['pwd']);
|
|
|
}
|
|
|
//修改账号
|