MobileAnchor.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 MobileAnchor extends Backend
  12. {
  13. /**
  14. * MobileAnchor模型对象
  15. * @var \app\admin\model\MobileAnchor
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\MobileAnchor;
  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->relationSearch = true;
  39. //设置过滤方法
  40. $this->request->filter(['strip_tags', 'trim']);
  41. if ($this->request->isAjax()) {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField')) {
  44. return $this->selectpage();
  45. }
  46. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  47. $map=[];
  48. if($this->admin('is_sub')){
  49. $map['admin_id']=$this->auth->id;
  50. }
  51. $list = $this->model
  52. ->with(['admin'])
  53. ->where($where)
  54. ->where($map)
  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. public function edit($ids = null)
  63. {
  64. $this->checkSubPower($ids);
  65. return parent::edit($ids);
  66. }
  67. public function del($ids = "")
  68. {
  69. $this->checkSubPower($ids);
  70. parent::del($ids);
  71. }
  72. protected function selectpage()
  73. {
  74. //设置过滤方法
  75. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  76. //搜索关键词,客户端输入以空格分开,这里接收为数组
  77. $word = (array)$this->request->request("q_word/a");
  78. //当前页
  79. $page = $this->request->request("pageNumber");
  80. //分页大小
  81. $pagesize = $this->request->request("pageSize");
  82. //搜索条件
  83. $andor = $this->request->request("andOr", "and", "strtoupper");
  84. //排序方式
  85. $orderby = (array)$this->request->request("orderBy/a");
  86. //显示的字段
  87. $field = $this->request->request("showField");
  88. //主键
  89. $primarykey = $this->request->request("keyField");
  90. //主键值
  91. $primaryvalue = $this->request->request("keyValue");
  92. //搜索字段
  93. $searchfield = (array)$this->request->request("searchField/a");
  94. //自定义搜索条件
  95. $custom = (array)$this->request->request("custom/a");
  96. //是否返回树形结构
  97. $istree = $this->request->request("isTree", 0);
  98. $ishtml = $this->request->request("isHtml", 0);
  99. if ($istree) {
  100. $word = [];
  101. $pagesize = 999999;
  102. }
  103. $order = [];
  104. foreach ($orderby as $k => $v) {
  105. $order[$v[0]] = $v[1];
  106. }
  107. $field = $field ? $field : 'name';
  108. //如果有primaryvalue,说明当前是初始化传值
  109. if ($primaryvalue !== null) {
  110. $where = [$primarykey => ['in', $primaryvalue]];
  111. $pagesize = 999999;
  112. } else {
  113. $where = function ($query) use ($word, $andor, $field, $searchfield, $custom) {
  114. $logic = $andor == 'AND' ? '&' : '|';
  115. $searchfield = is_array($searchfield) ? implode($logic, $searchfield) : $searchfield;
  116. $searchfield = str_replace(',', $logic, $searchfield);
  117. $word = array_filter(array_unique($word));
  118. if (count($word) == 1) {
  119. $query->where($searchfield, "like", "%" . reset($word) . "%");
  120. } else {
  121. $query->where(function ($query) use ($word, $searchfield) {
  122. foreach ($word as $index => $item) {
  123. $query->whereOr(function ($query) use ($item, $searchfield) {
  124. $query->where($searchfield, "like", "%{$item}%");
  125. });
  126. }
  127. });
  128. }
  129. if ($custom && is_array($custom)) {
  130. foreach ($custom as $k => $v) {
  131. if (is_array($v) && 2 == count($v)) {
  132. $query->where($k, trim($v[0]), $v[1]);
  133. } else {
  134. $query->where($k, '=', $v);
  135. }
  136. }
  137. }
  138. };
  139. }
  140. $adminIds = $this->getDataLimitAdminIds();
  141. if (is_array($adminIds)) {
  142. $this->model->where($this->dataLimitField, 'in', $adminIds);
  143. }
  144. $list = [];
  145. $map=[];
  146. if($this->admin('is_sub')){
  147. $map['admin_id']=$this->admin('id');
  148. }
  149. $total = $this->model->where($where)->where($map)->count();
  150. if ($total > 0) {
  151. if (is_array($adminIds)) {
  152. $this->model->where($this->dataLimitField, 'in', $adminIds);
  153. }
  154. $fields = is_array($this->selectpageFields) ? $this->selectpageFields : ($this->selectpageFields && $this->selectpageFields != '*' ? explode(',', $this->selectpageFields) : []);
  155. //如果有primaryvalue,说明当前是初始化传值,按照选择顺序排序
  156. if ($primaryvalue !== null && preg_match("/^[a-z0-9_\-]+$/i", $primarykey)) {
  157. $primaryvalue = array_unique(is_array($primaryvalue) ? $primaryvalue : explode(',', $primaryvalue));
  158. //修复自定义data-primary-key为字符串内容时,给排序字段添加上引号
  159. $primaryvalue = array_map(function ($value) {
  160. return '\'' . $value . '\'';
  161. }, $primaryvalue);
  162. $primaryvalue = implode(',', $primaryvalue);
  163. $this->model->orderRaw("FIELD(`{$primarykey}`, {$primaryvalue})");
  164. } else {
  165. $this->model->order($order);
  166. }
  167. $datalist = $this->model->where($where)->where($map)
  168. ->page($page, $pagesize)
  169. ->select();
  170. foreach ($datalist as $index => $item) {
  171. unset($item['password'], $item['salt']);
  172. if ($this->selectpageFields == '*') {
  173. $result = [
  174. $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '',
  175. $field => isset($item[$field]) ? $item[$field] : '',
  176. ];
  177. } else {
  178. $result = array_intersect_key(($item instanceof Model ? $item->toArray() : (array)$item), array_flip($fields));
  179. }
  180. $result['pid'] = isset($item['pid']) ? $item['pid'] : (isset($item['parent_id']) ? $item['parent_id'] : 0);
  181. $list[] = $result;
  182. }
  183. if ($istree && !$primaryvalue) {
  184. $tree = Tree::instance();
  185. $tree->init(collection($list)->toArray(), 'pid');
  186. $list = $tree->getTreeList($tree->getTreeArray(0), $field);
  187. if (!$ishtml) {
  188. foreach ($list as &$item) {
  189. $item = str_replace('&nbsp;', ' ', $item);
  190. }
  191. unset($item);
  192. }
  193. }
  194. }
  195. //这里一定要返回有list这个字段,total是可选的,如果total<=list的数量,则会隐藏分页按钮
  196. return json(['list' => $list, 'total' => $total]);
  197. }
  198. }