Apply.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace app\admin\controller\user;
  3. use app\common\controller\Backend;
  4. /**
  5. * 用户申请管理
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Apply extends Backend
  10. {
  11. /**
  12. * Apply模型对象
  13. * @var \app\admin\model\user\Apply
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\user\Apply;
  20. $this->view->assign("educationList", $this->model->getEducationList());
  21. $this->view->assign("userTypeList", $this->model->getUserTypeList());
  22. }
  23. public function import()
  24. {
  25. parent::import();
  26. }
  27. /**
  28. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  29. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  30. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  31. */
  32. /**
  33. * 查看
  34. */
  35. public function index()
  36. {
  37. //设置过滤方法
  38. $this->request->filter(['strip_tags', 'trim']);
  39. if ($this->request->isAjax()) {
  40. //如果发送的来源是Selectpage,则转发到Selectpage
  41. if ($this->request->request('keyField')) {
  42. $data = $this->selectpage()->getData();
  43. if(!$this->request->request('keyValue'))
  44. $data['list'] = array_merge([['id'=>0,'nickname'=>'无','pid'=>0]],$data['list']);
  45. $data['total'] ++;
  46. return $data;
  47. }
  48. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  49. /**
  50. * 获取企业信息
  51. */
  52. $where1 = is_sys_admin();
  53. $list = $this->model
  54. ->where($where)->where($where1)
  55. ->order($sort, $order)
  56. ->paginate($limit);
  57. $result = array("total" => $list->total(), "rows" => $list->items());
  58. return json($result);
  59. }
  60. return $this->view->fetch();
  61. }
  62. }