// +---------------------------------------------------------------------- namespace app\controller\admin; use app\controller\Admin; /** * @title 后端公共模块 */ class Index extends Admin { /** * @title 后台首页 * @return html [description] */ public function index() { return $this->fetch(); } /** * @title 后台登录 * @return html [description] */ public function login() { return $this->fetch(); } /** * @title 后台退出 * @return html [description] */ public function logout() { return $this->fetch(); } }