// +---------------------------------------------------------------------- namespace app\controller\admin; use app\controller\Admin; /** * @title 后端公共模块 */ class Index extends Admin{ /** * @title 系统首页 */ public function index(){ return $this->data; } public function login(){ if ($this->request->isAjax()) { return $this->data; } } }