Dashboard.php 534 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. /**
  5. * 控制台
  6. *
  7. * @icon fa fa-dashboard
  8. * @remark 用于展示当前系统中的统计数据、统计报表及重要实时数据
  9. */
  10. class Dashboard extends Backend
  11. {
  12. public function index()
  13. {
  14. $user = $this->auth->getUserInfo();
  15. if($this->auth->isSuperAdmin()){
  16. $user['institution']['my_institution_name'] = '*';
  17. }
  18. $this->view->assign('user',$user);
  19. return $this->view->fetch();
  20. }
  21. }