mirror of
https://gitee.com/zhc02/timely_service.git
synced 2025-06-25 04:07:07 +08:00
45 lines
895 B
PHP
45 lines
895 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* Author: baihu
|
|
* Date: 2019/12/16
|
|
* Time: 13:18
|
|
*/
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
use think\App;
|
|
use think\Controller;
|
|
|
|
class Base extends Controller
|
|
{
|
|
const SUCCESS_CODE = 1000; // 系统成功代码
|
|
const ERROR_CODE = 1001; // 失败代码
|
|
/**
|
|
* @var \think\Request 请求体
|
|
*/
|
|
var $request;
|
|
/**
|
|
* @var \library\Response 响应体
|
|
*/
|
|
var $response;
|
|
|
|
/**
|
|
* @var boolean 是否强制登录
|
|
*/
|
|
protected $_require_login = TRUE;
|
|
|
|
public function __construct(App $app = null)
|
|
{
|
|
parent::__construct($app);
|
|
$this->request = request();
|
|
$this->response = new \library\Response();
|
|
if( $this->_require_login === TRUE and !session('admin_id') ){
|
|
$this->redirect('Login/index');
|
|
}
|
|
|
|
}
|
|
|
|
}
|