Base.php 367 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\service\controller;
  3. use think\Controller;
  4. class Base extends Controller
  5. {
  6. public function _initialize()
  7. {
  8. if(empty(cookie('l_user_name'))){
  9. $this->redirect(url('login/index'));
  10. }
  11. $this->assign([
  12. 'version' => config('version'),
  13. 'socket' => config('socket')
  14. ]);
  15. }
  16. }