mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改用户密码修改
This commit is contained in:
parent
5783b8c201
commit
b6e1277417
@ -85,8 +85,8 @@ class Index extends Controller
|
|||||||
$data = $this->_vali([
|
$data = $this->_vali([
|
||||||
'password.require' => '登录密码不能为空!',
|
'password.require' => '登录密码不能为空!',
|
||||||
'repassword.require' => '重复密码不能为空!',
|
'repassword.require' => '重复密码不能为空!',
|
||||||
'oldpassword.require' => '旧密码不能为空!',
|
'oldpassword.require' => '旧的密码不能为空!',
|
||||||
'password.confirm:repassword' => '验证密码与新密码不匹配!',
|
'password.confirm:repassword' => '两次输入的密码不一致!',
|
||||||
]);
|
]);
|
||||||
$user = $this->app->db->name('SystemUser')->where(['id' => $id])->find();
|
$user = $this->app->db->name('SystemUser')->where(['id' => $id])->find();
|
||||||
if (md5($data['oldpassword']) !== $user['password']) {
|
if (md5($data['oldpassword']) !== $user['password']) {
|
||||||
|
@ -95,11 +95,13 @@ class User extends Controller
|
|||||||
$this->verify = false;
|
$this->verify = false;
|
||||||
$this->_form($this->table, 'pass');
|
$this->_form($this->table, 'pass');
|
||||||
} else {
|
} else {
|
||||||
$post = $this->request->post();
|
$data = $this->_vali([
|
||||||
if ($post['password'] !== $post['repassword']) {
|
'id.require' => '用户ID不能为空!',
|
||||||
$this->error('两次输入的密码不一致!');
|
'password.require' => '登录密码不能为空!',
|
||||||
}
|
'repassword.require' => '重复密码不能为空!',
|
||||||
if (data_save($this->table, ['id' => $post['id'], 'password' => md5($post['password'])], 'id')) {
|
'repassword.confirm:password' => '两次输入的密码不一致!'
|
||||||
|
]);
|
||||||
|
if (data_save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) {
|
||||||
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
$this->success('密码修改成功,下次请使用新密码登录!', '');
|
||||||
} else {
|
} else {
|
||||||
$this->error('密码修改失败,请稍候再试!');
|
$this->error('密码修改失败,请稍候再试!');
|
||||||
@ -117,16 +119,23 @@ class User extends Controller
|
|||||||
protected function _form_filter(&$data)
|
protected function _form_filter(&$data)
|
||||||
{
|
{
|
||||||
if ($this->request->isPost()) {
|
if ($this->request->isPost()) {
|
||||||
// 用户权限处理
|
if (isset($data['id']) && $data['id'] > 0) {
|
||||||
$data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
|
unset($data['username']);
|
||||||
// 用户账号重复检查
|
} else {
|
||||||
if (isset($data['id'])) unset($data['username']);
|
// 检查登录账号是否出现重复
|
||||||
elseif ($this->app->db->name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
|
if (empty($data['username'])) $this->error('登录账号不能为空!');
|
||||||
|
$where = ['username' => $data['username'], 'is_deleted' => 0];
|
||||||
|
if ($this->app->db->name($this->table)->where($where)->count() > 0) {
|
||||||
$this->error("账号{$data['username']}已经存在,请使用其它账号!");
|
$this->error("账号{$data['username']}已经存在,请使用其它账号!");
|
||||||
}
|
}
|
||||||
|
// 新添加的用户密码与账号相同
|
||||||
|
$data['password'] = md5($data['username']);
|
||||||
|
}
|
||||||
|
// 账号权限绑定处理
|
||||||
|
$data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
|
||||||
} else {
|
} else {
|
||||||
$data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
|
$data['authorize'] = explode(',', $data['authorize'] ?: '');
|
||||||
$this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
|
$this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select()->toArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
// This file is automatically generated at:2020-05-29 11:46:38
|
// This file is automatically generated at:2020-05-29 11:47:46
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
return array (
|
return array (
|
||||||
0 => 'think\\app\\Service',
|
0 => 'think\\app\\Service',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user