Base.php 363 B

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