2018-06-06 15:40:11 +08:00

65 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace controller;
use service\ToolsService;
/**
* 基础接口类
* Class BasicApi
* @package controller
*/
class BasicApi
{
/**
* 当前请求对象
* @var \think\Request
*/
protected $request;
/**
* 构造方法
* BasicApi constructor.
*/
public function __construct()
{
ToolsService::corsOptionsHandler();
$this->request = app('request');
}
/**
* 返回成功的操作
* @param mixed $msg 消息内容
* @param array $data 返回数据
* @param integer $code 返回代码
*/
protected function success($msg, $data = [], $code = 1)
{
ToolsService::success($msg, $data, $code);
}
/**
* 返回失败的请求
* @param mixed $msg 消息内容
* @param array $data 返回数据
* @param integer $code 返回代码
*/
protected function error($msg, $data = [], $code = 0)
{
ToolsService::error($msg, $data, $code);
}
}