Files
sentcms/app/controller/admin/Index.php
2019-06-29 22:51:20 +08:00

42 lines
947 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\controller\admin;
use app\controller\Admin;
use think\facade\Session;
/**
* @title 后端公共模块
*/
class Index extends Admin{
/**
* @title 系统首页
*/
public function index(){
}
/**
* @title 更新缓存
*/
public function clear(){
}
/**
* @title 后台登录
*/
public function login(){
if ($this->request->isAjax()) {
Session::set('user', ['uid'=>1,'username'=>'admin']);
return $this->data;
}
}
}