// +---------------------------------------------------------------------- namespace app\controller; use app\controller\Base; /** * @title 首页 */ class Index extends Base{ /** * @title 首页 * * @return void */ public function index(){ if(request()->isAjax()){ return ['code' => 1, 'data' => 'SentOS']; }else{ return `SentOS
SentOS

赣ICP备13006622号-1

技术支持:腾速科技

`; } } public function test(){ } public function miss(){ return '404 Not Found!'; } }