81 lines
1.8 KiB
PHP
81 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Api\Controller;
|
|
|
|
use Service\IntegralService;
|
|
|
|
/**
|
|
* 用户积分管理
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
class UserIntegralController extends CommonController
|
|
{
|
|
/**
|
|
* [_initialize 前置操作-继承公共前置方法]
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-03T12:39:08+0800
|
|
*/
|
|
public function _initialize()
|
|
{
|
|
// 调用父类前置方法
|
|
parent::_initialize();
|
|
|
|
// 是否ajax请求
|
|
if(!IS_AJAX)
|
|
{
|
|
$this->error(L('common_unauthorized_access'));
|
|
}
|
|
|
|
// 登录校验
|
|
$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;
|
|
|
|
// 条件
|
|
$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'],
|
|
];
|
|
$this->ajaxReturn(L('common_operation_success'), 0, $result);
|
|
}
|
|
|
|
}
|
|
?>
|