redirect('admin/index/index'); } $this->cache_model=array('Module','AuthRule','Category','Posid','Field','System'); $this->system = cache('System'); $this->assign('system',$this->system); if(empty($this->system)){ foreach($this->cache_model as $r){ savecache($r); } } } public function index(){ if(request()->isPost()) { $data = input('post.'); $admin = new Admin(); $return = $admin->login($data,$this->system['code']); return ['code' => $return['code'], 'msg' => $return['msg']]; }else{ return $this->fetch(); } } public function verify(){ $config = [ // 验证码字体大小 'fontSize' => 25, // 验证码位数 'length' => 4, // 关闭验证码杂点 'useNoise' => false, 'bg' => [255,255,255], ]; $captcha = new Captcha($config); return $captcha->entry(); } }