Index.php 324 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\controller;
  3. use crmeb\basic\BaseController;
  4. use think\facade\View;
  5. class Index //extends BaseController
  6. {
  7. /**
  8. * TODO 1 开始安装
  9. * @return string
  10. * @author Qinii
  11. * @day 2020-07-16
  12. */
  13. public function index()
  14. {
  15. return View::fetch('/index/index');
  16. }
  17. }