截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LikeShop有特色的全开源社交分销电商系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 商业用途务必购买系统授权,以免引起不必要的法律纠纷
  7. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  8. // | 微信公众号:好象科技
  9. // | 访问官网:http://www.likeshop.net
  10. // | 访问社区:http://bbs.likeshop.net
  11. // | 访问手册:http://doc.likeshop.net
  12. // | 好象科技开发团队 版权所有 拥有最终解释权
  13. // +----------------------------------------------------------------------
  14. // | Author: LikeShopTeam
  15. // +----------------------------------------------------------------------
  16. namespace app\api\controller;
  17. use app\api\logic\ShopFollowLogic;
  18. use app\common\basics\Api;
  19. use app\api\logic\PcLogic;
  20. use app\common\server\JsonServer;
  21. use app\api\validate\ChangeUserInfo;
  22. use think\exception\ValidateException;
  23. class Pc extends Api
  24. {
  25. public $like_not_need_login = ['articleDetail','commonData','goodsList','category'];
  26. /**
  27. * @notes PC公共数据
  28. * @return \think\response\Json
  29. * @author suny
  30. * @date 2021/10/27 10:31 上午
  31. */
  32. public function commonData(){
  33. return JsonServer::success('',PcLogic::commonData($this->user_id));
  34. }
  35. /**
  36. * @notes 商品列表
  37. * @return \think\response\Json
  38. * @author suny
  39. * @date 2021/10/27 11:26 上午
  40. */
  41. public function goodsList(){
  42. $type = $this->request->get('type',1);
  43. $sort_type = $this->request->get('sort_type','');
  44. $sort = $this->request->get('sort','');
  45. $name = $this->request->get('name','');
  46. $category_id = $this->request->get('category_id','');
  47. $shop_id = $this->request->get('shop_id','');
  48. $list = PcLogic::goodsList($this->page_no,$this->page_size,$name,$category_id,$shop_id,$type,$sort_type,$sort);
  49. return JsonServer::success('',$list);
  50. }
  51. public function changeUserInfo(){
  52. try{
  53. $post = $this->request->post();
  54. $post['user_id'] = $this->user_id;
  55. validate(ChangeUserInfo::class)->check($post);
  56. }catch(ValidateException $e) {
  57. return JsonServer::error($e->getError());
  58. }
  59. $result = PcLogic::changeUserInfo($post);
  60. if($result === true) {
  61. return JsonServer::success('保存成功');
  62. }
  63. return JsonServer::error($result);
  64. }
  65. /**
  66. * @notes PC商品分类
  67. * @return \think\response\Json
  68. * @author heshihu
  69. * @date 2021/10/26 6:19 下午
  70. */
  71. public function category(){
  72. $cateogry = PcLogic::categoryThirdTree();
  73. return JsonServer::success('获取成功', $cateogry);
  74. }
  75. /**
  76. * @notes 文章详情
  77. * @return \think\response\Json
  78. * @author suny
  79. * @date 2021/10/26 6:40 下午
  80. */
  81. public function articleDetail(){
  82. $id = $this->request->get('id');
  83. return JsonServer::success('获取成功', PcLogic::articleDetail($id));
  84. }
  85. /**
  86. * @notes PC我的店铺收藏列表
  87. * @return \think\response\Json
  88. * @author suny
  89. * @date 2021/10/28 5:09 下午
  90. */
  91. public function shopFollowList()
  92. {
  93. $get = $this->request->get();
  94. $get['user_id'] = $this->user_id;
  95. $get['page_no'] = $this->page_no;
  96. $get['page_size'] = $this->page_size;
  97. $data = PcLogic::shopFollowList($get);
  98. return JsonServer::success('', $data);
  99. }
  100. }