123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- /**
- * 用户积分流水
- *
- * @icon fa fa-circle-o
- */
- class Userscorelog extends Backend
- {
- /**
- * Userscorelog模型对象
- * @var \app\admin\model\Userscorelog
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\Userscorelog;
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if (false === $this->request->isAjax()) {
- return $this->view->fetch();
- }
- //如果发送的来源是 Selectpage,则转发到 Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- $wallet_logtype = config('wallet.logtype');
- $lists = collection($list->items())->toArray();
- foreach ($lists as &$row) {
- $row['log_type_text'] = isset($wallet_logtype[$row['log_type']]) ? $wallet_logtype[$row['log_type']] : '';
- }
- $result = ['total' => $list->total(), 'rows' => $lists];
- return json($result);
- }
- }
|