截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

OrderRenew.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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-22 18:10:24
  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 renewLog()
  36. {
  37. if ($this->request->isAjax()) {
  38. $get = $this->request->get();
  39. $get['shop_id'] = $this->shop_id;
  40. $get['type_id'] = 1;
  41. return JsonServer::success('', OrderRenewLogic::renewLog($get));
  42. }
  43. return view('');
  44. }
  45. public function renewMonthLog()
  46. {
  47. if ($this->request->isAjax()) {
  48. $get = $this->request->get();
  49. $get['shop_id'] = $this->shop_id;
  50. $get['type_id'] = 2;
  51. return JsonServer::success('', OrderRenewLogic::renewLog($get));
  52. }
  53. return view('');
  54. }
  55. public function buy()
  56. {
  57. $get = $this->request->get();
  58. $get['shop_id'] = $this->shop_id;
  59. $id = $get['id'] ?? 0;
  60. $data = OrderRenewLogic::buy($id);
  61. return view('', ['detail' => $data]);
  62. }
  63. public function add()
  64. {
  65. if ($this->request->isPost()) {
  66. $post = $this->request->post();
  67. $post['shop_id'] = $this->shop_id;
  68. $data = OrderRenewLogic::add($post);
  69. if (!$data) {
  70. return JsonServer::error(OrderRenewLogic::getError());
  71. }
  72. return JsonServer::success('', $data);
  73. }
  74. return JsonServer::error('请求方式错误');
  75. }
  76. public function cancel()
  77. {
  78. if ($this->request->isPost()) {
  79. $post = $this->request->post();
  80. $post['shop_id'] = $this->shop_id;
  81. $data = OrderRenewLogic::cancel($post);
  82. if (!$data) {
  83. return JsonServer::error(OrderRenewLogic::getError());
  84. }
  85. return JsonServer::success('操作成功');
  86. }
  87. return JsonServer::error('请求方式错误');
  88. }
  89. public function payPage()
  90. {
  91. $get = $this->request->get();
  92. $get['shop_id'] = $this->shop_id;
  93. $data = OrderRenewLogic::payPage($get);
  94. return view('', ['detail' => $data]);
  95. }
  96. public function payWay()
  97. {
  98. if ($this->request->isPost()) {
  99. $post = $this->request->post();
  100. $post['shop_id'] = $this->shop_id;
  101. $data = OrderRenewLogic::payWay($post);
  102. if (!$data) {
  103. return JsonServer::error(OrderRenewLogic::getError());
  104. }
  105. return JsonServer::success('', ['page' => $data]);
  106. }
  107. return JsonServer::error('请求方式错误');
  108. }
  109. }