Box.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use fast\Tree;
  5. use think\Model;
  6. /**
  7. *
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Box extends Backend
  12. {
  13. /**
  14. * Box模型对象
  15. * @var \app\admin\model\Box
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Box;
  22. $this->view->assign("isShowList", $this->model->getIsShowList());
  23. }
  24. public function import()
  25. {
  26. parent::import();
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. //当前是否为关联查询
  39. $this->relationSearch = false;
  40. //设置过滤方法
  41. $this->request->filter(['strip_tags', 'trim']);
  42. if ($this->request->isAjax()) {
  43. //如果发送的来源是Selectpage,则转发到Selectpage
  44. if ($this->request->request('keyField')) {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  48. $list = $this->model
  49. ->where(['is_del'=>0])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->paginate($limit);
  53. foreach ($list as $row) {
  54. $row->visible(['id','name','image','images','desc','price','stock','sales','surplus','content','start_time','end_time','order','is_show']);
  55. }
  56. $result = array("total" => $list->total(), "rows" => $list->items());
  57. return json($result);
  58. }
  59. return $this->view->fetch();
  60. }
  61. public function del($ids = "")
  62. {
  63. $result = $this->model->where(['id'=>['in',$ids]])->update(['is_del'=>1]);
  64. if($result) return json(['code'=>1,'msg'=>'删除成功']);
  65. return json(['code'=>1,'msg'=>'删除成功']);
  66. }
  67. protected function selectpage()
  68. {
  69. //设置过滤方法
  70. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  71. //搜索关键词,客户端输入以空格分开,这里接收为数组
  72. $word = (array)$this->request->request("q_word/a");
  73. //当前页
  74. $page = $this->request->request("pageNumber");
  75. //分页大小
  76. $pagesize = $this->request->request("pageSize");
  77. //搜索条件
  78. $andor = $this->request->request("andOr", "and", "strtoupper");
  79. //排序方式
  80. $orderby = (array)$this->request->request("orderBy/a");
  81. //显示的字段
  82. $field = $this->request->request("showField");
  83. //主键
  84. $primarykey = $this->request->request("keyField");
  85. //主键值
  86. $primaryvalue = $this->request->request("keyValue");
  87. //搜索字段
  88. $searchfield = (array)$this->request->request("searchField/a");
  89. //自定义搜索条件
  90. $custom = (array)$this->request->request("custom/a");
  91. //是否返回树形结构
  92. $istree = $this->request->request("isTree", 0);
  93. $ishtml = $this->request->request("isHtml", 0);
  94. if ($istree) {
  95. $word = [];
  96. $pagesize = 999999;
  97. }
  98. $order = [];
  99. foreach ($orderby as $k => $v) {
  100. $order[$v[0]] = $v[1];
  101. }
  102. $field = $field ? $field : 'name';
  103. //如果有primaryvalue,说明当前是初始化传值
  104. if ($primaryvalue !== null) {
  105. $where = [$primarykey => ['in', $primaryvalue]];
  106. $pagesize = 999999;
  107. } else {
  108. $where = function ($query) use ($word, $andor, $field, $searchfield, $custom) {
  109. $logic = $andor == 'AND' ? '&' : '|';
  110. $searchfield = is_array($searchfield) ? implode($logic, $searchfield) : $searchfield;
  111. $searchfield = str_replace(',', $logic, $searchfield);
  112. $word = array_filter(array_unique($word));
  113. if (count($word) == 1) {
  114. $query->where($searchfield, "like", "%" . reset($word) . "%");
  115. } else {
  116. $query->where(function ($query) use ($word, $searchfield) {
  117. foreach ($word as $index => $item) {
  118. $query->whereOr(function ($query) use ($item, $searchfield) {
  119. $query->where($searchfield, "like", "%{$item}%");
  120. });
  121. }
  122. });
  123. }
  124. if ($custom && is_array($custom)) {
  125. foreach ($custom as $k => $v) {
  126. if (is_array($v) && 2 == count($v)) {
  127. $query->where($k, trim($v[0]), $v[1]);
  128. } else {
  129. $query->where($k, '=', $v);
  130. }
  131. }
  132. }
  133. };
  134. }
  135. $adminIds = $this->getDataLimitAdminIds();
  136. if (is_array($adminIds)) {
  137. $this->model->where($this->dataLimitField, 'in', $adminIds);
  138. }
  139. $list = [];
  140. $total = $this->model->where($where)->count();
  141. if ($total > 0) {
  142. if (is_array($adminIds)) {
  143. $this->model->where($this->dataLimitField, 'in', $adminIds);
  144. }
  145. $fields = is_array($this->selectpageFields) ? $this->selectpageFields : ($this->selectpageFields && $this->selectpageFields != '*' ? explode(',', $this->selectpageFields) : []);
  146. //如果有primaryvalue,说明当前是初始化传值,按照选择顺序排序
  147. if ($primaryvalue !== null && preg_match("/^[a-z0-9_\-]+$/i", $primarykey)) {
  148. $primaryvalue = array_unique(is_array($primaryvalue) ? $primaryvalue : explode(',', $primaryvalue));
  149. //修复自定义data-primary-key为字符串内容时,给排序字段添加上引号
  150. $primaryvalue = array_map(function ($value) {
  151. return '\'' . $value . '\'';
  152. }, $primaryvalue);
  153. $primaryvalue = implode(',', $primaryvalue);
  154. $this->model->orderRaw("FIELD(`{$primarykey}`, {$primaryvalue})");
  155. } else {
  156. $this->model->order($order);
  157. }
  158. $datalist = $this->model->where($where)
  159. ->page($page, $pagesize)
  160. ->where(['is_del'=>0])
  161. ->select();
  162. foreach ($datalist as $index => $item) {
  163. unset($item['password'], $item['salt']);
  164. if ($this->selectpageFields == '*') {
  165. $result = [
  166. $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '',
  167. $field => isset($item[$field]) ? $item[$field] : '',
  168. ];
  169. } else {
  170. $result = array_intersect_key(($item instanceof Model ? $item->toArray() : (array)$item), array_flip($fields));
  171. }
  172. $result['pid'] = isset($item['pid']) ? $item['pid'] : (isset($item['parent_id']) ? $item['parent_id'] : 0);
  173. $list[] = $result;
  174. }
  175. if ($istree && !$primaryvalue) {
  176. $tree = Tree::instance();
  177. $tree->init(collection($list)->toArray(), 'pid');
  178. $list = $tree->getTreeList($tree->getTreeArray(0), $field);
  179. if (!$ishtml) {
  180. foreach ($list as &$item) {
  181. $item = str_replace('&nbsp;', ' ', $item);
  182. }
  183. unset($item);
  184. }
  185. }
  186. }
  187. //这里一定要返回有list这个字段,total是可选的,如果total<=list的数量,则会隐藏分页按钮
  188. return json(['list' => $list, 'total' => $total]);
  189. }
  190. }