Index.php 376 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm
  4. * User: 林志杰
  5. * Email: [email protected]
  6. * Time: 2020/1/2 12:58
  7. */
  8. namespace app\admin\controller;
  9. use think\facade\View;
  10. class Index extends AdminBase
  11. {
  12. public function index()
  13. {
  14. // return 'hello-admin';
  15. return View::fetch('');
  16. }
  17. public function welcome()
  18. {
  19. return View::fetch();
  20. }
  21. }