截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AfterSale.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\JsonServer;
  5. use app\api\logic\AfterSaleLogic;
  6. use think\exception\ValidateException;
  7. use app\api\validate\AfterSaleValidate;
  8. use think\facade\Validate;
  9. /**
  10. * 售后
  11. * Class AfterSale
  12. * @package app\api\controller
  13. */
  14. class AfterSale extends Api
  15. {
  16. /**
  17. * @notes 售后退款列表
  18. * @return \think\response\Json
  19. * @author suny
  20. * @date 2021/7/13 6:04 下午
  21. */
  22. public function lists()
  23. {
  24. $type = $this->request->get('type', 'normal');
  25. $lists = AfterSaleLogic::lists($this->user_id, $type, $this->page_no, $this->page_size);
  26. return JsonServer::success('', $lists);
  27. }
  28. /**
  29. * @notes 申请售后
  30. * @return \think\response\Json
  31. * @author suny
  32. * @date 2021/7/13 6:05 下午
  33. * @throws \think\Exception
  34. */
  35. public function add()
  36. {
  37. $post = $this->request->post();
  38. $post['user_id'] = $this->user_id;
  39. (new AfterSaleValidate())->goCheck('add', $post);
  40. $result = AfterSaleLogic::add($post, $this->user_id);
  41. if (false === $result) {
  42. return JsonServer::error('该订单已超过售后时间');
  43. }
  44. return JsonServer::success('售后申请成功!', $result);
  45. }
  46. /**
  47. * @notes 售后商品信息
  48. * @return \think\response\Json
  49. * @author suny
  50. * @date 2021/7/13 6:05 下午
  51. */
  52. public function goodsInfo()
  53. {
  54. $get = $this->request->get();
  55. (new AfterSaleValidate())->goCheck('goodsInfo', $get);
  56. return JsonServer::success('', AfterSaleLogic::info($get['item_id'], $get['order_id']));
  57. }
  58. /**
  59. * @notes 上传退货快递信息
  60. * @return \think\response\Json
  61. * @author suny
  62. * @date 2021/7/13 6:05 下午
  63. */
  64. public function express()
  65. {
  66. $post = $this->request->post();
  67. (new AfterSaleValidate())->goCheck('express', $post);
  68. $data = AfterSaleLogic::express($this->user_id, $post);
  69. return JsonServer::success('提交成功!', [$data]);
  70. }
  71. /**
  72. * @notes 撤销售后
  73. * @return \think\response\Json
  74. * @author suny
  75. * @date 2021/7/13 6:06 下午
  76. */
  77. public function cancel()
  78. {
  79. $post = $this->request->post();
  80. (new AfterSaleValidate())->goCheck('cancel', $post);
  81. AfterSaleLogic::cancel($this->user_id, $post);
  82. return JsonServer::success('撤销成功');
  83. }
  84. /**
  85. * @notes 售后详情
  86. * @return \think\response\Json
  87. * @author suny
  88. * @date 2021/7/13 6:06 下午
  89. */
  90. public function detail()
  91. {
  92. $get = $this->request->get();
  93. (new AfterSaleValidate())->goCheck('detail', $get);
  94. return JsonServer::success('', AfterSaleLogic::detail($get));
  95. }
  96. /**
  97. * @notes 重新申请
  98. * @return \think\response\Json
  99. * @throws \think\Exception
  100. * @author suny
  101. * @date 2021/7/13 6:06 下午
  102. */
  103. public function again()
  104. {
  105. $post = $this->request->post();
  106. (new AfterSaleValidate())->goCheck('again', $post);
  107. $result = AfterSaleLogic::again($this->user_id, $post);
  108. return JsonServer::success('提交成功!', $result);
  109. }
  110. }