12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace app\adminapi\controller;
- use crmeb\basic\BaseController;
- /**
- * 基类 所有控制器继承的类
- * Class AuthController
- * @package app\adminapi\controller
- */
- class AuthController extends BaseController
- {
- /**
- * 当前登陆管理员信息
- * @var
- */
- protected $adminInfo;
- /**
- * 当前登陆管理员ID
- * @var
- */
- protected $adminId;
- /**
- * 当前登录的地址
- * @var
- */
- protected $merId;
- /**
- * 当前管理员权限
- * @var array
- */
- protected $auth = [];
- /**
- * 模型类名
- * @var null
- */
- protected $bindModel = null;
- /**
- * 初始化
- */
- protected function initialize()
- {
- parent::initialize();
- $this->adminId = $this->request->adminId();
- $this->adminInfo = $this->request->adminInfo();
- $this->merId = $this->request->mer_id();
- $this->auth = $this->request->adminInfo['rule'] ?? [];
- event('AdminVisit', [$this->adminInfo, 'system', $this->merId]);
- }
- }
|