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

GoodsRenew.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /*
  3. * @Author: ZMH
  4. * @Email: zmhwork@qq.com
  5. * @Date: 2025-03-13 11:45:32
  6. * @LastEditTime: 2025-03-13 17:37:36
  7. * @LastEditors: ZMH
  8. * @FilePath: \opkpm\app\admin\controller\shop\GoodsRenew.php
  9. *
  10. * @Description: 续费模块
  11. */
  12. namespace app\admin\controller\shop;
  13. use app\admin\logic\shop\GoodsRenewLogic;
  14. use app\common\basics\AdminBase;
  15. use app\common\server\JsonServer;
  16. class GoodsRenew extends AdminBase
  17. {
  18. public function lists()
  19. {
  20. if ($this->request->isAjax()) {
  21. $get = $this->request->get();
  22. $lists = GoodsRenewLogic::lists($get);
  23. return JsonServer::success('获取成功', $lists);
  24. }
  25. return view();
  26. }
  27. public function add()
  28. {
  29. if ($this->request->isAjax()) {
  30. $post = $this->request->post();
  31. $res = GoodsRenewLogic::add($post);
  32. if ($res === false) {
  33. $error = GoodsRenewLogic::getError() ?: '操作失败';
  34. return JsonServer::error($error);
  35. }
  36. return JsonServer::success('操作成功');
  37. }
  38. return view();
  39. }
  40. public function edit()
  41. {
  42. if ($this->request->isAjax()) {
  43. $post = $this->request->post();
  44. $res = GoodsRenewLogic::edit($post);
  45. if ($res === false) {
  46. $error = GoodsRenewLogic::getError() ?: '操作失败';
  47. return JsonServer::error($error);
  48. }
  49. return JsonServer::success('操作成功');
  50. }
  51. $id = $this->request->get('id');
  52. return view('', [
  53. 'detail' => GoodsRenewLogic::detail($id)
  54. ]);
  55. }
  56. public function del()
  57. {
  58. if ($this->request->isAjax()) {
  59. $id = $this->request->post('id');
  60. $res = GoodsRenewLogic::del($id);
  61. if ($res === false) {
  62. $error = GoodsRenewLogic::getError() ?: '操作失败';
  63. return JsonServer::error($error);
  64. }
  65. return JsonServer::success('操作成功');
  66. }
  67. return JsonServer::error('请求异常');
  68. }
  69. }