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

OrderRenew.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2025-03-14 17:27:51
  5. * @LastEditors: xiaohai zmhwork@qq.com
  6. * @LastEditTime: 2025-03-17 16:24:30
  7. * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
  8. * @Description: 续费订单
  9. */
  10. namespace app\shop\controller\order;
  11. use app\common\basics\ShopBase;
  12. use app\common\server\JsonServer;
  13. use app\shop\logic\order\OrderRenewLogic;
  14. use Nette\Utils\Json;
  15. class OrderRenew extends ShopBase
  16. {
  17. public function lists()
  18. {
  19. if ($this->request->isAjax()) {
  20. $get = $this->request->get();
  21. $get['shop_id'] = $this->shop_id;
  22. return JsonServer::success('', OrderRenewLogic::lists($get));
  23. }
  24. return view('');
  25. }
  26. public function renewLists()
  27. {
  28. if ($this->request->isAjax()) {
  29. $get = $this->request->get();
  30. $get['shop_id'] = $this->shop_id;
  31. return JsonServer::success('', OrderRenewLogic::renewLists($get));
  32. }
  33. return view('');
  34. }
  35. public function buy()
  36. {
  37. $get = $this->request->get();
  38. $get['shop_id'] = $this->shop_id;
  39. $id = $get['id'] ?? 0;
  40. $data = OrderRenewLogic::buy($id);
  41. return view('', ['detail' => $data]);
  42. }
  43. public function add()
  44. {
  45. if ($this->request->isPost()) {
  46. $post = $this->request->post();
  47. $post['shop_id'] = $this->shop_id;
  48. $data = OrderRenewLogic::add($post);
  49. if (!$data) {
  50. return JsonServer::error(OrderRenewLogic::getError());
  51. }
  52. return JsonServer::success('', $data);
  53. }
  54. return JsonServer::error('请求方式错误');
  55. }
  56. public function cancel()
  57. {
  58. if ($this->request->isPost()) {
  59. $post = $this->request->post();
  60. $post['shop_id'] = $this->shop_id;
  61. $data = OrderRenewLogic::cancel($post);
  62. if (!$data) {
  63. return JsonServer::error(OrderRenewLogic::getError());
  64. }
  65. return JsonServer::success('操作成功');
  66. }
  67. return JsonServer::error('请求方式错误');
  68. }
  69. public function payPage()
  70. {
  71. $get = $this->request->get();
  72. $get['shop_id'] = $this->shop_id;
  73. $data = OrderRenewLogic::payPage($get);
  74. return view('', ['detail' => $data]);
  75. }
  76. public function payWay()
  77. {
  78. if ($this->request->isPost()) {
  79. $post = $this->request->post();
  80. $post['shop_id'] = $this->shop_id;
  81. $data = OrderRenewLogic::payWay($post);
  82. if (!$data) {
  83. return JsonServer::error(OrderRenewLogic::getError());
  84. }
  85. return JsonServer::success('', ['page' => $data]);
  86. }
  87. return JsonServer::error('请求方式错误');
  88. }
  89. }