From c74de1fa24addce69f7f2ac0d01160f0d39092bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 14 Mar 2017 11:22:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=B3=BB=E7=BB=9F=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Index.php | 44 ++++++++++++++++++++++++-- application/admin/view/user.pass.html | 15 +++++++-- 2 files changed, 54 insertions(+), 5 deletions(-) diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index 0e7b63745..cb84f624b 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -15,8 +15,10 @@ namespace app\admin\controller; use controller\BasicAdmin; +use library\Data; use library\Tools; use think\Db; +use think\response\View; /** * 后台入口 @@ -29,7 +31,7 @@ class Index extends BasicAdmin { /** * 后台框架布局 - * @return \think\response\View + * @return View */ public function index() { $list = Db::name('SystemMenu')->field('title,id,pid,url,icon')->order('sort asc,id asc')->where('status', '1')->select(); @@ -64,7 +66,7 @@ class Index extends BasicAdmin { /** * 主机信息显示 - * @return \think\response\View + * @return View */ public function main() { $_version = Db::query('select version() as ver'); @@ -82,4 +84,42 @@ class Index extends BasicAdmin { return view(); } + /** + * 修改密码 + */ + public function pass() { + if (intval($this->request->request('id')) !== intval(session('user.id'))) { + $this->error('访问异常!'); + } + if ($this->request->isGet()) { + $this->assign('verify', true); + return $this->_form('SystemUser', 'user/pass'); + } else { + $data = $this->request->post(); + if ($data['password'] !== $data['repassword']) { + $this->error('两次输入的密码不一致,请重新输入!'); + } + $user = Db::name('SystemUser')->where('id', session('user.id'))->find(); + if (md5($data['oldpassword']) !== $user['password']) { + $this->error('旧密码验证失败,请重新输入!'); + } + if (Data::save('SystemUser', ['id' => session('user.id'), 'password' => md5($data['password'])])) { + $this->success('密码修改成功,下次请使用新密码登录!', ''); + } else { + $this->error('密码修改失败,请稍候再试!'); + } + } + } + + /** + * 修改资料 + */ + public function info() { + if (intval($this->request->request('id')) === intval(session('user.id'))) { + return $this->_form('SystemUser', 'user/form'); + } else { + $this->error('访问异常!'); + } + } + } diff --git a/application/admin/view/user.pass.html b/application/admin/view/user.pass.html index b3be5b6a7..9dff0cb73 100644 --- a/application/admin/view/user.pass.html +++ b/application/admin/view/user.pass.html @@ -11,17 +11,26 @@ + {if $verify}
- +
- + +
+
+ {/if} + +
+ +
+
- +