<?php
namespace app\admin\controller;
use app\admin\model\admin\User as UserModel;
use think\Session;
class Passport extends Controller
{
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');
}
}