| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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('dyu_admin');
- $this->redirect('passport/login');
- }
- }
|