127 lines
3.5 KiB
PHP
127 lines
3.5 KiB
PHP
<?php
|
|
|
|
|
|
namespace app\common\service;
|
|
|
|
|
|
use app\api\logic\store\StoreLogic;
|
|
use app\common\enum\ExportEnum;
|
|
use app\common\lists\BaseDataLists;
|
|
use app\common\lists\ListsExcelInterface;
|
|
use app\common\lists\ListsExtendInterface;
|
|
use app\common\model\dict\DictType;
|
|
use app\common\model\system_store\SystemStore;
|
|
use support\Response;
|
|
use support\exception\BusinessException;
|
|
|
|
class JsonService
|
|
{
|
|
/**
|
|
* @notes 接口操作成功,返回信息
|
|
* @param string $msg
|
|
* @param array $data
|
|
* @param int $code
|
|
* @param int $show
|
|
* @author 乔峰
|
|
* @date 2021/12/24 18:28
|
|
*/
|
|
public static function success(string $msg = 'success', array $data = [], int $code = 1, int $show = 1)
|
|
{
|
|
return self::result($code, $show, $msg, $data);
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 接口操作失败,返回信息
|
|
* @param string $msg
|
|
* @param array $data
|
|
* @param int $code
|
|
* @param int $show
|
|
* @author 乔峰
|
|
* @date 2021/12/24 18:28
|
|
*/
|
|
public static function fail(string $msg = 'fail', array $data = [], int $code = 0, int $show = 1)
|
|
{
|
|
return self::result($code, $show, $msg, $data);
|
|
}
|
|
|
|
/**
|
|
* @notes 接口返回数据
|
|
* @param $data
|
|
* @author 乔峰
|
|
* @date 2021/12/24 18:29
|
|
*/
|
|
public static function data($data)
|
|
{
|
|
return self::success('', $data, 1, 0);
|
|
}
|
|
|
|
/**
|
|
* @notes 接口返回信息
|
|
* @param int $code
|
|
* @param int $show
|
|
* @param string $msg
|
|
* @param array $data
|
|
* @param int $httpStatus
|
|
* @author 乔峰
|
|
* @date 2021/12/24 18:29
|
|
*/
|
|
private static function result(int $code, int $show, string $msg = 'OK', array $data = [], int $httpStatus = 200)
|
|
{
|
|
$result = compact('code', 'show', 'msg', 'data');
|
|
return json($result, $httpStatus);
|
|
}
|
|
|
|
/**
|
|
* @notes 抛出异常json
|
|
* @param string $msg
|
|
* @param array $data
|
|
* @param int $code
|
|
* @param int $show
|
|
* @author 乔峰
|
|
* @date 2021/12/24 18:29
|
|
*/
|
|
public static function throw(string $msg = 'fail', array $data = [], int $code = 0, int $show = 1)
|
|
{
|
|
$data = compact('code', 'show', 'msg', 'data');
|
|
throw new BusinessException(json_encode($data));
|
|
}
|
|
|
|
/**
|
|
* @notes 数据列表
|
|
* @param \app\common\lists\BaseDataLists $lists
|
|
* @author 令狐冲
|
|
* @date 2021/7/28 11:15
|
|
*/
|
|
public static function dataLists(BaseDataLists $lists,$remark)
|
|
{
|
|
//获取导出信息
|
|
if ($lists->export == ExportEnum::INFO && $lists instanceof ListsExcelInterface) {
|
|
return self::data($lists->excelInfo());
|
|
}
|
|
|
|
//获取导出文件的下载链接
|
|
if ($lists->export == ExportEnum::EXPORT && $lists instanceof ListsExcelInterface) {
|
|
$exportDownloadUrl = $lists->createExcel($lists->setExcelFields(), $lists->lists());
|
|
return self::success('', ['url' => $exportDownloadUrl], 2);
|
|
}
|
|
|
|
$data = [
|
|
'lists' => $lists->lists(),
|
|
'count' => $lists->count(),
|
|
'page_no' => $lists->pageNo,
|
|
'page_size' => $lists->pageSize,
|
|
];
|
|
$store_id = DictType::where('type','store')->value('remark')??5;
|
|
if($remark){
|
|
$data['store'] = StoreLogic::search([
|
|
'id' => $store_id
|
|
]);
|
|
}
|
|
$data['extend'] = [];
|
|
if ($lists instanceof ListsExtendInterface) {
|
|
$data['extend'] = $lists->extend();
|
|
}
|
|
return self::success('', $data, 1, 0);
|
|
}
|
|
} |