mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-05 21:32:31 +08:00
dev -> tp5
This commit is contained in:
82
application/index/controller/UserIntegral.php
Executable file
82
application/index/controller/UserIntegral.php
Executable file
@ -0,0 +1,82 @@
|
||||
<?php
|
||||
namespace app\index\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
|
||||
{
|
||||
/**
|
||||
* [_initialize 前置操作-继承公共前置方法]
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-03T12:39:08+0800
|
||||
*/
|
||||
public function _initialize()
|
||||
{
|
||||
// 调用父类前置方法
|
||||
parent::_initialize();
|
||||
|
||||
// 是否登录
|
||||
$this->Is_Login();
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户积分列表
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 1.0.0
|
||||
* @date 2018-09-28
|
||||
* @desc description
|
||||
*/
|
||||
public function Index()
|
||||
{
|
||||
// 参数
|
||||
$params = input();
|
||||
$params['user'] = $this->user;
|
||||
|
||||
// 分页
|
||||
$number = 10;
|
||||
|
||||
// 条件
|
||||
$where = IntegralService::UserIntegralLogListWhere($params);
|
||||
|
||||
// 获取总数
|
||||
$total = IntegralService::UserIntegralLogTotal($where);
|
||||
|
||||
// 分页
|
||||
$page_params = array(
|
||||
'number' => $number,
|
||||
'total' => $total,
|
||||
'where' => $params,
|
||||
'url' => url('index/userintegral/index'),
|
||||
);
|
||||
$page = new \base\Page($page_params);
|
||||
$this->assign('page_html', $page->GetPageHtml());
|
||||
|
||||
// 获取列表
|
||||
$data_params = array(
|
||||
'limit_start' => $page->GetPageStarNumber(),
|
||||
'limit_number' => $number,
|
||||
'where' => $where,
|
||||
);
|
||||
$data = IntegralService::UserIntegralLogList($data_params);
|
||||
$this->assign('data_list', $data['data']);
|
||||
|
||||
// 操作类型
|
||||
$this->assign('common_integral_log_type_list', lang('common_integral_log_type_list'));
|
||||
|
||||
// 参数
|
||||
$this->assign('params', $params);
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user