124 lines
3.4 KiB
PHP
124 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\admin\model\SystemAdmin;
|
|
use app\admin\model\SystemQuick;
|
|
use app\common\controller\AdminController;
|
|
use Exception;
|
|
use think\App;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
use think\facade\Env;
|
|
|
|
class Index extends AdminController
|
|
{
|
|
|
|
/**
|
|
* 后台主页
|
|
* @return string
|
|
* @throws Exception
|
|
*/
|
|
public function index(): string
|
|
{
|
|
return $this->fetch('', [
|
|
'admin' => session('admin'),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 后台欢迎页
|
|
* @return string
|
|
* @throws Exception
|
|
*/
|
|
public function welcome(): string
|
|
{
|
|
$quicks = SystemQuick::field('id,title,icon,href')
|
|
->where(['status' => 1])
|
|
->order('sort', 'desc')
|
|
->limit(8)
|
|
->select();
|
|
$this->assign('quicks', $quicks);
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 修改管理员信息
|
|
* @return string
|
|
* @throws DataNotFoundException
|
|
* @throws DbException
|
|
* @throws ModelNotFoundException
|
|
*/
|
|
public function editAdmin(): string
|
|
{
|
|
$id = session('admin.id');
|
|
$row = (new SystemAdmin())
|
|
->withoutField('password')
|
|
->find($id);
|
|
empty($row) && $this->error('用户信息不存在');
|
|
if ($this->request->isPost()) {
|
|
$post = $this->request->post();
|
|
$this->isDemo && $this->error('演示环境下不允许修改');
|
|
$rule = [];
|
|
$this->validate($post, $rule);
|
|
try {
|
|
$save = $row
|
|
->allowField(['head_img', 'phone', 'remark', 'update_time'])
|
|
->save($post);
|
|
} catch (Exception $e) {
|
|
$this->error('保存失败');
|
|
}
|
|
$save ? $this->success('保存成功') : $this->error('保存失败');
|
|
}
|
|
$this->assign('row', $row);
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 修改密码
|
|
* @return string
|
|
* @throws DataNotFoundException
|
|
* @throws DbException
|
|
* @throws ModelNotFoundException
|
|
*/
|
|
public function editPassword(): string
|
|
{
|
|
$id = session('admin.id');
|
|
$row = (new SystemAdmin())
|
|
->withoutField('password')
|
|
->find($id);
|
|
if (!$row) {
|
|
$this->error('用户信息不存在');
|
|
}
|
|
if ($this->request->isPost()) {
|
|
$post = $this->request->post();
|
|
$this->isDemo && $this->error('演示环境下不允许修改');
|
|
$rule = [
|
|
'password|登录密码' => 'require',
|
|
'password_again|确认密码' => 'require',
|
|
];
|
|
$this->validate($post, $rule);
|
|
if ($post['password'] != $post['password_again']) {
|
|
$this->error('两次密码输入不一致');
|
|
}
|
|
|
|
try {
|
|
$save = $row->save([
|
|
'password' => password($post['password']),
|
|
]);
|
|
} catch (Exception $e) {
|
|
$this->error('保存失败');
|
|
}
|
|
if ($save) {
|
|
$this->success('保存成功');
|
|
} else {
|
|
$this->error('保存失败');
|
|
}
|
|
}
|
|
$this->assign('row', $row);
|
|
return $this->fetch();
|
|
}
|
|
|
|
}
|