Area.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use app\common\controller\Api;
  16. use library\File;
  17. use think\Db;
  18. /**
  19. * @title 地址库
  20. * @controller Area
  21. * @group common
  22. */
  23. class Area extends Base
  24. {
  25. /**
  26. * @title 获取省市区
  27. * @desc 获取省市区
  28. * @author QC
  29. * @url /api/Area/getAllArea
  30. * @method GET
  31. * @tag 省市区
  32. */
  33. public function getAllArea(){
  34. $area_set = Db::table('platform_set')->where('name','all_area')->find();
  35. if(!empty($area_set) && $area_set['content']) {
  36. $list = json_decode($area_set['content'],true);
  37. }else{
  38. $field=['id','pid','shortname','name'];
  39. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  40. foreach ($list as $k=>&$v){
  41. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  42. if(!empty($v['children'])){
  43. foreach ($v['children'] as $kk=>&$vv){
  44. $vv['children']=Db::table('store_area')->where('pid',$vv['id'])->field($field)->select();
  45. }
  46. }
  47. }
  48. if(!empty($area_set)){
  49. Db::table('platform_set')->where('name','all_area')->update(['content'=>json_encode($list)]);
  50. }else{
  51. Db::table('platform_set')->insert(['name'=>'all_area','content'=>json_encode($list)]);
  52. }
  53. }
  54. $this->success('获取成功',$list);
  55. }
  56. /**
  57. * @title 获取下级地区
  58. * @desc 获取下级地区
  59. * @author QC
  60. * @url /api/Area/getChildrenArea
  61. * @method GET
  62. * @param name:id type:int default:1 desc:省id或市id
  63. */
  64. public function getChildrenArea()
  65. {
  66. $field=['id','pid','shortname','name'];
  67. $list=Db::table('store_area')->where('pid',$this->request->get('id'))->field($field)->select();
  68. $this->success('获取成功',$list);
  69. }
  70. /**
  71. * 获取定位城市
  72. */
  73. public function getCity(){
  74. $list=Db::table('store_area')->where('level',2)->field('first')->group('first')->order('first asc')->select();
  75. $field=['id','pid','shortname','name','first'];
  76. foreach ($list as $k=>&$v){
  77. $v['list']=Db::table('store_area')->where('level',2)->where('first',$v['first'])->field($field)->select();
  78. }
  79. $hot=Db::table('store_area')->whereIn('id',[2,802,1965])->field($field)->select();
  80. $history=Db::table('store_area')->whereIn('id',[2,802,1965])->field($field)->select();
  81. array_unshift($list,['first'=>'历史','list'=>$history],['first'=>'热门城市','list'=>$hot]);
  82. $this->success('获取成功',$list);
  83. }
  84. /**
  85. * @title 通过省市区id返回具体地址信息
  86. * @desc 通过省市区id返回具体地址信息
  87. * @author QC
  88. * @url /api/Area/getCity
  89. * @method GET
  90. * @tag 省市区
  91. */
  92. public function get_area($province_id,$city_id,$county_id){
  93. $province = '';
  94. if(!empty($province_id)){
  95. $quarters = Db::name('store_area')->field('name')->where('id',$province_id)->find();
  96. $province = $quarters['name'];
  97. }
  98. $city = '';
  99. if(!empty($city_id)){
  100. $quarters = Db::name('store_area')->field('name')->where('id',$city_id)->find();
  101. $city = $quarters['name'];
  102. }
  103. $county = '';
  104. if(!empty($county_id)){
  105. $quarters = Db::name('store_area')->field('name')->where('id',$county_id)->find();
  106. $county = $quarters['name'];
  107. }
  108. return $province.$city.$county;
  109. }
  110. /**
  111. * 通过省市区名称返回省市区id
  112. */
  113. public function get_area_id($province = '',$city = '',$county = ''){
  114. $province_id = '';
  115. if(!empty($province)){
  116. $province_id = Db::name('store_area')->where('name',$province)->value('id');
  117. }
  118. $city_id = '';
  119. if(!empty($city)){
  120. $city_id = Db::name('store_area')->where('name',$city)->value('id');
  121. }
  122. $county_id = '';
  123. if(!empty($county)){
  124. $county_id = Db::name('store_area')->where('name',$county)->value('id');
  125. }
  126. return $province_id.$city_id.$county_id;
  127. }
  128. /**
  129. * 通过id获取名称
  130. */
  131. public function get_name($id){
  132. $quarters = Db::name('store_area')->field('name')->where('id',$id)->find();
  133. return $quarters['name'];
  134. }
  135. /**
  136. * 通过省/市的ID获取所有县区ID
  137. * $type 1代表省 2代表市
  138. */
  139. public function get_county_id($id,$type=1){
  140. $county_id_str = '';
  141. if($type == 1){
  142. $city_id_arr = Db::name('store_area')->field('id')->where('pid',$id)->column('id');
  143. foreach ($city_id_arr as $value){
  144. $county_id_arr = Db::name('store_area')->field('id')->where('pid',$value)->column('id');
  145. $county_id_str .= implode(',',$county_id_arr).',';
  146. }
  147. }else{
  148. $county_id_arr = Db::name('store_area')->field('id')->where('pid',$id)->column('id');
  149. $county_id_str .= implode(',',$county_id_arr).',';
  150. }
  151. return substr($county_id_str,0,strlen($county_id_str)-1);
  152. }
  153. /**
  154. * 通过省的ID获取所有市的ID
  155. */
  156. public function get_city_id($id){
  157. $city_id_arr = Db::name('store_area')->field('id')->where('pid',$id)->column('id');
  158. return implode(',',$city_id_arr);
  159. }
  160. /**
  161. * 通过市的ID获取省的ID
  162. */
  163. public function get_province_id($id){
  164. $province_id = Db::name('store_area')->field('id')->where('id',$id)->value('pid');
  165. return $province_id;
  166. }
  167. }