截流自动化的商城平台
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.

CommunityUser.php 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\CommunityUserLogic;
  4. use app\common\basics\Api;
  5. use app\common\server\JsonServer;
  6. /**
  7. * 种草社区用户相关
  8. * Class CommunityArticle
  9. * @package app\api\controller
  10. */
  11. class CommunityUser extends Api
  12. {
  13. /**
  14. * @notes 个人中心
  15. * @return \think\response\Json
  16. * @author 段誉
  17. * @date 2022/5/5 18:15
  18. */
  19. public function center()
  20. {
  21. $get = $this->request->get();
  22. $result = CommunityUserLogic::getCenterInfo($this->user_id, $get);
  23. return JsonServer::success('', $result);
  24. }
  25. /**
  26. * @notes 获取设置
  27. * @return \think\response\Json
  28. * @author 段誉
  29. * @date 2022/5/5 18:28
  30. */
  31. public function getSetting()
  32. {
  33. $result = CommunityUserLogic::getSetting($this->user_id);
  34. return JsonServer::success('', $result);
  35. }
  36. /**
  37. * @notes 设置签名,背景图
  38. * @return \think\response\Json
  39. * @author 段誉
  40. * @date 2022/5/5 18:28
  41. */
  42. public function setSetting()
  43. {
  44. $post = $this->request->post();
  45. $result = CommunityUserLogic::setSetting($this->user_id, $post);
  46. if (false === $result) {
  47. return JsonServer::error(CommunityUserLogic::getError() ?: '设置失败');
  48. }
  49. return JsonServer::success('操作成功');
  50. }
  51. }