Userorder.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?php
  2. namespace app\admin\controller;
  3. use library\Controller;
  4. use library\tools\Data;
  5. use think\Db;
  6. /**
  7. * 施工照片
  8. * Class Userimage
  9. * @package app\admin\controller
  10. */
  11. class Userorder extends Controller
  12. {
  13. /**
  14. * 指定当前数据表
  15. * @var string
  16. */
  17. public $table = 'user_order';
  18. /**
  19. * 系统用户管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $id = $this->request->get('id');
  31. $this->uid=$id;
  32. $where['uid'] = $id;
  33. $this->title = '服务订单';
  34. $query = $this->_query($this->table)->where($where);
  35. $query->dateBetween('login_at,create_at')->where($where)->order('id desc')->page();
  36. }
  37. /**
  38. * 数据列表处理
  39. */
  40. protected function _index_page_filter(&$data)
  41. {
  42. foreach ($data as &$v) {
  43. $v['images'] = explode('|',$v['image']);
  44. }
  45. }
  46. /**
  47. * 添加系统用户
  48. * @auth true
  49. * @throws \think\Exception
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. * @throws \think\exception\PDOException
  54. */
  55. public function add()
  56. {
  57. $this->applyCsrfToken();
  58. $this->_form($this->table, 'form');
  59. }
  60. /**
  61. * 编辑系统用户
  62. * @auth true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function edit()
  70. {
  71. $this->applyCsrfToken();
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 表单数据处理
  76. * @param array $data
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. * @throws \think\exception\DbException
  80. */
  81. public function _form_filter(&$data)
  82. {
  83. $uid = $this->request->get('uid');
  84. if (isset($uid)) $data['uid'] = $uid;
  85. if ($this->request->isPost()) {
  86. if (empty($data['create_time'])) $data['create_time'] = date('Y-m-d H:i:s',time());
  87. // // 用户权限处理
  88. // $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
  89. // // 用户账号重复检查
  90. // if (isset($data['id'])) unset($data['username']);
  91. // elseif (Db::name($this->table)->where(['username' => $data['username'], 'is_deleted' => '0'])->count() > 0) {
  92. // $this->error("账号{$data['username']}已经存在,请使用其它账号!");
  93. // }
  94. } else {
  95. $data['authorize'] = explode(',', isset($data['authorize']) ? $data['authorize'] : '');
  96. $this->authorizes = Db::name('SystemAuth')->where(['status' => '1'])->order('sort desc,id desc')->select();
  97. }
  98. }
  99. /**
  100. * 禁用系统用户
  101. * @auth true
  102. * @throws \think\Exception
  103. * @throws \think\exception\PDOException
  104. */
  105. public function forbid()
  106. {
  107. if (in_array('10000', explode(',', $this->request->post('id')))) {
  108. $this->error('系统超级账号禁止操作!');
  109. }
  110. $this->applyCsrfToken();
  111. $this->_save($this->table, ['status' => '0']);
  112. }
  113. /**
  114. * 启用系统用户
  115. * @auth true
  116. * @throws \think\Exception
  117. * @throws \think\exception\PDOException
  118. */
  119. public function resume()
  120. {
  121. $this->applyCsrfToken();
  122. $this->_save($this->table, ['status' => '1']);
  123. }
  124. /**
  125. * 删除系统用户
  126. * @auth true
  127. * @throws \think\Exception
  128. * @throws \think\exception\PDOException
  129. */
  130. public function remove()
  131. {
  132. if (in_array('10000', explode(',', $this->request->post('id')))) {
  133. $this->error('系统超级账号禁止删除!');
  134. }
  135. $this->applyCsrfToken();
  136. $this->_delete($this->table);
  137. }
  138. }