Index.php 767 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. namespace app\cms\home;
  10. /**
  11. * 前台首页控制器
  12. * @package app\cms\admin
  13. */
  14. class Index extends Common
  15. {
  16. /**
  17. * 首页
  18. * @author 蔡伟明 <314013107@qq.com>
  19. * @return mixed
  20. */
  21. public function index()
  22. {
  23. return $this->fetch(); // 渲染模板
  24. }
  25. }