IndexController.php 1.5 KB

1234567891011121314151617181920212223242526272829
  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-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\portal\controller;
  12. use cmf\controller\HomeBaseController;
  13. class IndexController extends HomeBaseController
  14. {
  15. // 首页
  16. public function index()
  17. {
  18. return $this->fetch();
  19. }
  20. public function scanqr() {
  21. return $this->fetch();
  22. }
  23. }