diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 7594c9656..040eb5958 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -84,9 +84,6 @@ class User extends Controller /** * 修改用户密码 * @auth true - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException */ public function pass() { @@ -101,8 +98,8 @@ class User extends Controller 'repassword.require' => '重复密码不能为空!', 'repassword.confirm:password' => '两次输入的密码不一致!', ]); - $user = SystemUser::mk()->find($data['id']); - if (!empty($user) && $user->save(['password' => md5($data['password'])])) { + $user = SystemUser::mk()->findOrEmpty($data['id']); + if ($user->isExists() && $user->save(['password' => md5($data['password'])])) { sysoplog('系统用户管理', "修改用户[{$data['id']}]密码成功"); $this->success('密码修改成功,请使用新密码登录!', ''); } else { diff --git a/app/admin/view/file/form.html b/app/admin/view/file/form.html deleted file mode 100644 index 79ea76eeb..000000000 --- a/app/admin/view/file/form.html +++ /dev/null @@ -1,114 +0,0 @@ -
-
- -
- 用户账号 - -
-
- - -
-
- -
-
- -
-
- -
- - {if !empty($bases) || !empty($authorizes)} -
- 用户权限 - {if !empty($bases)} -
-
角色身份Role Identity
-
- {foreach $bases as $base} - - {/foreach} -
-
- {/if} - {if !empty($authorizes)} -
-
访问权限Role Permission
-
- {if isset($vo.username) and $vo.username eq $superName} - 超级用户拥所有访问权限,不需要配置权限。 - {else}{foreach $authorizes as $authorize} - - {/foreach}{/if} -
-
- {/if} -
- {/if} - -
- 用户资料 -
-
- -
-
- -
-
- -
-
- -
- -
- -
- {notempty name='vo.id'}{/notempty} - -
- - -
-
\ No newline at end of file