1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- /**
- * 控制台
- *
- * @icon fa fa-dashboard
- * @remark 用于展示当前系统中的统计数据、统计报表及重要实时数据
- */
- class Dashboard extends Backend
- {
- public function index()
- {
- $user = $this->auth->getUserInfo();
- if($this->auth->isSuperAdmin()){
- $user['institution']['my_institution_name'] = '*';
- }
- $this->view->assign('user',$user);
- return $this->view->fetch();
- }
- }
|