diff --git a/README.md b/README.md index e69de29..4e94601 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +### TOP-Framework diff --git a/application/home/config/config.php b/application/home/config/config.php index 019d4be..60da52b 100644 --- a/application/home/config/config.php +++ b/application/home/config/config.php @@ -22,7 +22,7 @@ return [ 'view' => [ 'engine' => 'Top', 'ext' => 'html', - 'dir' => '../application/home/view/', + 'dir' => APP_PATH . 'home/view/', 'cacheDir' => './runtime/cache/application/home/', 'compileDir' => './runtime/compile/application/home/', 'left' => '{', diff --git a/application/home/controller/Index.php b/application/home/controller/Index.php index d404d45..273a552 100644 --- a/application/home/controller/Index.php +++ b/application/home/controller/Index.php @@ -2,23 +2,25 @@ namespace app\home\controller; -use app\home\model\Users; +use top\blocks\Json; class Index extends Common { + use Json; public function index() { - $model = model(Users::class); - $lists = $model->all; - return [ - 'lists' => $lists - ]; + return request()->module(); } public function hello() { - // return $this->fetch(); - return true; + return 'hello'; } -} \ No newline at end of file + + public function testPage() + { + // return $this->fetch(); + return []; + } +} diff --git a/application/home/view/Index/index.html b/application/home/view/Index/index.html index 9d0e3de..4769a07 100644 --- a/application/home/view/Index/index.html +++ b/application/home/view/Index/index.html @@ -3,12 +3,12 @@