MainController.php 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\admin\controller;
  12. use cmf\controller\AdminBaseController;
  13. use think\Db;
  14. use app\admin\model\Menu;
  15. class MainController extends AdminBaseController{
  16. /**
  17. * 后台欢迎页
  18. */
  19. public function index(){
  20. return $this->fetch();
  21. }
  22. }