// +---------------------------------------------------------------------- namespace app\controller\cashier; use crmeb\basic\BaseController; /** * 基类 所有控制器继承的类 * Class AuthController * @package app\controller\admin * @method success($msg = 'ok', array $data = []) * @method fail($msg = 'error', array $data = []) */ class AuthController extends BaseController { /** * 门店整体类型1:平台2:门店 * @var int */ protected $type = 2; /** * 当前登录门店信息 * @var */ protected $storeInfo; /** * 当前登门店ID * @var */ protected $storeId; /** * 当前登录门店店员ID * @var */ protected $cashierId; /** * 当前登录门店店员信息 * @var */ protected $cashierInfo; /** * 当前管理员权限 * @var array */ protected $auth = []; /** * 初始化 */ protected function initialize() { $this->storeId = $this->request->hasMacro('storeId') ? $this->request->storeId() : 0; $this->cashierId = $this->request->hasMacro('cashierId') ? $this->request->cashierId() : 0; $this->cashierInfo = $this->request->hasMacro('cashierInfo') ? $this->request->cashierInfo() : []; $this->auth = $this->cashierInfo['rule'] ?? []; } }