This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/admin/controller/Passport.php
2020-04-25 22:20:29 +08:00

45 lines
1.0 KiB
PHP

<?php
namespace app\admin\controller;
use app\admin\model\admin\User as UserModel;
use think\Session;
/**
* 超管后台认证
* Class Passport
* @package app\store\controller
*/
class Passport extends Controller
{
/**
* 超管后台登录
* @return array|mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function login()
{
if ($this->request->isAjax()) {
$model = new UserModel;
if ($model->login($this->postData('User'))) {
return $this->renderSuccess('登录成功', url('index/index'));
}
return $this->renderError($model->getError() ?: '登录失败');
}
$this->view->engine->layout(false);
return $this->fetch('login');
}
/**
* 退出登录
*/
public function logout()
{
Session::clear('yoshop_admin');
$this->redirect('passport/login');
}
}