mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-01 11:30:03 +08:00
debug
This commit is contained in:
75
application/api/controller/Userintegral.php
Executable file
75
application/api/controller/Userintegral.php
Executable file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
namespace app\api\controller;
|
||||
|
||||
use app\service\IntegralService;
|
||||
|
||||
/**
|
||||
* 用户积分管理
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-01T21:51:08+0800
|
||||
*/
|
||||
class UserIntegral extends Common
|
||||
{
|
||||
/**
|
||||
* [__construct 构造方法]
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-03T12:39:08+0800
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
// 调用父类前置方法
|
||||
parent::__construct();
|
||||
|
||||
// 是否登录
|
||||
$this->Is_Login();
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户积分列表
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-09-28
|
||||
* @desc description
|
||||
*/
|
||||
public function Index()
|
||||
{
|
||||
// 参数
|
||||
$params = $this->data_post;
|
||||
$params['user'] = $this->user;
|
||||
|
||||
// 分页
|
||||
$number = 10;
|
||||
$page = max(1, isset($this->data_post['page']) ? intval($this->data_post['page']) : 1);
|
||||
|
||||
// 条件
|
||||
$where = IntegralService::UserIntegralLogListWhere($params);
|
||||
|
||||
// 获取总数
|
||||
$total = IntegralService::UserIntegralLogTotal($where);
|
||||
$page_total = ceil($total/$number);
|
||||
$start = intval(($page-1)*$number);
|
||||
|
||||
// 获取列表
|
||||
$data_params = array(
|
||||
'limit_start' => $start,
|
||||
'limit_number' => $number,
|
||||
'where' => $where,
|
||||
);
|
||||
$data = IntegralService::UserIntegralLogList($data_params);
|
||||
|
||||
// 返回数据
|
||||
$result = [
|
||||
'total' => $total,
|
||||
'page_total' => $page_total,
|
||||
'data' => $data['data'],
|
||||
];
|
||||
return json(DataReturn('success', 0, $result));
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user