Update User.php

This commit is contained in:
Anyon 2019-11-29 11:27:50 +08:00
parent 9a23165ff2
commit 4215e189e9

View File

@ -111,8 +111,7 @@ class User extends Controller
// 用户权限处理
$data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
// 用户账号重复检查
if (isset($data['id']))
unset($data['username']);
if (isset($data['id'])) unset($data['username']);
elseif ($this->app->db->name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
$this->error("账号{$data['username']}已经存在,请使用其它账号!");
}