12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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->relationSearch = true;
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- ->with(['user'])
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- foreach ($list as $row) {
-
- $row->getRelation('user')->visible(['username','nickname','mobile']);
- }
- $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 = array("total" => $list->total(), "rows" => $lists);
- return json($result);
- }
- return $this->view->fetch();
- }
- }
|