OrderAftersale.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace addons\shopro\controller;
  3. class OrderAftersale extends Base
  4. {
  5. protected $noNeedLogin = [];
  6. protected $noNeedRight = ['*'];
  7. public function index()
  8. {
  9. $params = $this->request->get();
  10. $this->success('售后列表', \addons\shopro\model\OrderAftersale::getList($params));
  11. }
  12. /**
  13. * 详情
  14. */
  15. public function detail()
  16. {
  17. $params = $this->request->get();
  18. $this->shoproValidate($params, get_class(), 'detail');
  19. $this->success('售后详情', \addons\shopro\model\OrderAftersale::detail($params));
  20. }
  21. // 申请售后
  22. public function aftersale()
  23. {
  24. $params = $this->request->post();
  25. // 表单验证
  26. $this->shoproValidate($params, get_class(), 'aftersale');
  27. $this->success('申请成功', \addons\shopro\model\OrderAftersale::aftersale($params));
  28. }
  29. // 取消售后单
  30. public function cancel()
  31. {
  32. $params = $this->request->post();
  33. // 表单验证
  34. $this->shoproValidate($params, get_class(), 'cancel');
  35. $this->success('取消成功', \addons\shopro\model\OrderAftersale::operCancel($params));
  36. }
  37. // 删除售后单
  38. public function delete()
  39. {
  40. $params = $this->request->post();
  41. // 表单验证
  42. $this->shoproValidate($params, get_class(), 'delete');
  43. $this->success('删除成功', \addons\shopro\model\OrderAftersale::operDelete($params));
  44. }
  45. }