截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Index.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\api\logic\IndexLogic;
  5. use app\common\logic\ChatLogic;
  6. use app\common\logic\RegionLogic;
  7. use app\common\server\JsonServer;
  8. class Index extends Api
  9. {
  10. public $like_not_need_login = ['index', 'indexCategory', 'config','copyright','city','geocoder'];
  11. // 首页
  12. public function index()
  13. {
  14. $terminal = $this->request->get('terminal', 'nmp');
  15. $city = $this->request->get('city_id', '');
  16. $data = IndexLogic::index($this->user_id,$terminal,$city);
  17. return JsonServer::success('获取成功', $data);
  18. }
  19. // 首页分类
  20. public function indexCategory()
  21. {
  22. $platform_category_id = $this->request->get('platform_category_id', '', 'intval');
  23. if(empty($platform_category_id)) {
  24. return JsonServer::error('平台分类id不能为空');
  25. }
  26. $data = IndexLogic::indexCategory($platform_category_id);
  27. return JsonServer::success('获取成功', $data);
  28. }
  29. // 通用配置
  30. public function config()
  31. {
  32. $data = IndexLogic::config();
  33. return JsonServer::success('获取成功', $data);
  34. }
  35. /**
  36. * @notes 客服配置
  37. * @return \think\response\Json
  38. * @author 段誉
  39. * @date 2021/12/15 17:16
  40. */
  41. public function chatConfig()
  42. {
  43. $shop_id = $this->request->get('shop_id/d');
  44. $result = ChatLogic::getConfig($shop_id);
  45. return JsonServer::success($result['msg'], [], $result['code']);
  46. }
  47. /**
  48. * @notes 版权资质
  49. * @return \think\response\Json
  50. * @author ljj
  51. * @date 2022/2/22 10:16 上午
  52. */
  53. public function copyright()
  54. {
  55. $shop_id = $this->request->get('shop_id/d');
  56. $result = IndexLogic::copyright($shop_id);
  57. return JsonServer::success('', $result);
  58. }
  59. /**
  60. * @notes 地级市
  61. * @return \think\response\Json
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\DbException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. * @author ljj
  66. * @date 2022/9/20 5:51 下午
  67. */
  68. public function city()
  69. {
  70. $result = RegionLogic::city();
  71. return JsonServer::success('', $result);
  72. }
  73. /**
  74. * @notes 腾讯地图逆地址解析(坐标位置描述)
  75. * @return \think\response\Json
  76. * @author ljj
  77. * @date 2022/9/21 2:37 下午
  78. * 经纬度到文字地址及相关位置信息的转换
  79. */
  80. public function geocoder()
  81. {
  82. $get = $this->request->get();
  83. if (!isset($get['location']) || $get['location'] == '') {
  84. return JsonServer::error('经纬度缺失');
  85. }
  86. $result = IndexLogic::geocoder($get);
  87. if ($result['status'] !== 0) {
  88. return JsonServer::error($result['message']);
  89. }
  90. return JsonServer::success('',$result);
  91. }
  92. }