Area.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\Users;
  5. use catcher\Utils;
  6. class Area extends Model
  7. {
  8. // 表名
  9. public $name = 'areas';
  10. // 数据库字段映射
  11. public $field = array(
  12. 'id',
  13. // 父id
  14. 'parent_id',
  15. // 名称
  16. 'area_name',
  17. // 区域类型
  18. 'area_type',
  19. // 经度
  20. 'longitude',
  21. // 纬度
  22. 'latitude',
  23. // 创建人ID
  24. 'creator_id',
  25. // 创建时间
  26. 'created_at',
  27. // 更新时间
  28. 'updated_at',
  29. // 软删除
  30. 'deleted_at',
  31. );
  32. /**
  33. * 列表
  34. *
  35. * @time 2020年01月09日
  36. * @param $params
  37. * @throws \think\db\exception\DbException
  38. * @return \think\Paginator
  39. */
  40. public function getList()
  41. {
  42. $cond = [];
  43. // if(!Utils::isSuperAdmin()){ // 非超级管理员
  44. // $auth_areas = (new Users)->getAreaIdBy();
  45. // $cond[] = ['id', 'in', json_decode($auth_areas,true)];
  46. // }
  47. $res = $this->catchSearch()
  48. ->order('id', 'desc')
  49. ->where($cond)
  50. ->select()
  51. ->toTree();
  52. return $res;
  53. }
  54. /**
  55. * 获取区域组件数据
  56. */
  57. public function getAreaTreeData()
  58. {
  59. $cond = [];
  60. // if(!Utils::isSuperAdmin()){ // 非超级管理员
  61. // $auth_areas = (new Users)->getAreaIdBy();
  62. // return json_decode($auth_areas, true);
  63. // }
  64. return [];
  65. }
  66. /**
  67. * 获取区域组件数据
  68. */
  69. public function getAreaTreeDataByCity($cityid){
  70. return [$cityid];
  71. }
  72. /**
  73. * 搜索器
  74. */
  75. public function searchAreaNameAttr($query, $value, $data)
  76. {
  77. return $query->whereLike('area_name', "%$value%");
  78. }
  79. /**
  80. * 是否叶节点
  81. */
  82. public function isLeaf($areas)
  83. {
  84. foreach($areas as &$area) {
  85. $area['leaf'] = true;
  86. if (isset($area['children'])) {
  87. $area['leaf'] = false;
  88. $area['children'] = $this->isLeaf($area['children']);
  89. }
  90. }
  91. return $areas;
  92. }
  93. }