34 lines
871 B
PHP
34 lines
871 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(){
|
|
return $this->data;
|
|
}
|
|
|
|
public function login(){
|
|
if ($this->request->isAjax()) {
|
|
Session::set('user', ['uid'=>1,'username'=>'admin']);
|
|
|
|
return $this->data;
|
|
}
|
|
}
|
|
}
|