Cashlog.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace app\admin\controller\cash;
  3. use app\common\controller\Backend;
  4. /**
  5. * 提现记录管理
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Cashlog extends Backend
  10. {
  11. /**
  12. * Cashlog模型对象
  13. * @var \app\admin\model\cash\Cashlog
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\cash\Cashlog;
  20. }
  21. /**
  22. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  23. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  24. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  25. */
  26. /**
  27. * 查看
  28. */
  29. public function index()
  30. {
  31. //当前是否为关联查询
  32. $this->relationSearch = true;
  33. //设置过滤方法
  34. $this->request->filter(['strip_tags', 'trim']);
  35. if ($this->request->isAjax())
  36. {
  37. //如果发送的来源是Selectpage,则转发到Selectpage
  38. if ($this->request->request('keyField'))
  39. {
  40. return $this->selectpage();
  41. }
  42. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  43. $total = $this->model
  44. ->with(['users'])
  45. ->where($where)
  46. ->order($sort, $order)
  47. ->count();
  48. $list = $this->model
  49. ->with(['users'])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->limit($offset, $limit)
  53. ->select();
  54. foreach ($list as $row) {
  55. $row->visible(['t_id','user_id','money','state','create_time','number','reason','admin_look']);
  56. $row->visible(['users']);
  57. $row->getRelation('users')->visible(['user_nickname','user_tel','user_avatar']);
  58. }
  59. $list = collection($list)->toArray();
  60. $result = array("total" => $total, "rows" => $list);
  61. return json($result);
  62. }
  63. return $this->view->fetch();
  64. }
  65. }