Screen.php 661 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Config;
  5. use think\Db;
  6. use think\Request;
  7. /**
  8. * 数字大屏接口
  9. *
  10. * @icon fa fa-dashboard
  11. */
  12. class Screen extends Backend
  13. {
  14. protected $model = null;
  15. protected $qc_model = null;
  16. protected $qr_model = null;
  17. protected $zjfl_model = null;
  18. protected $layout = '';
  19. protected $noNeedRight = ['index'];
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $groupIds = $this->auth->getGroupIds();
  24. }
  25. /**
  26. * 数字大屏接口
  27. */
  28. public function index()
  29. {
  30. return $this->view->fetch();
  31. }
  32. }