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

Alipay.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use app\shop\logic\AlipayLogic;
  23. use app\shop\validate\AlipayValidate;
  24. class Alipay extends ShopBase
  25. {
  26. function lists()
  27. {
  28. if ($this->request->isAjax()) {
  29. $get = $this->request->get();
  30. $lists = AlipayLogic::lists($get, $this->shop_id);
  31. return JsonServer::success('获取成功', $lists);
  32. }
  33. return view();
  34. }
  35. function detail()
  36. {
  37. return view('', [
  38. 'detail' => AlipayLogic::detail($this->request->get('id')),
  39. ]);
  40. }
  41. function add()
  42. {
  43. if ($this->request->isAjax()) {
  44. (new AlipayValidate())->goCheck('add');
  45. $post = $this->request->post();
  46. $res = AlipayLogic::add($post, $this->shop_id);
  47. if ($res === false) {
  48. $error = AlipayLogic::getError() ?: '新增失败';
  49. return JsonServer::error($error);
  50. }
  51. return JsonServer::success('新增成功');
  52. }
  53. return view();
  54. }
  55. function edit()
  56. {
  57. if ($this->request->isAjax()) {
  58. (new AlipayValidate())->goCheck('edit');
  59. $post = $this->request->post();
  60. $res = AlipayLogic::edit($post, $this->shop_id);
  61. if ($res === false) {
  62. $error = AlipayLogic::getError() ?: '编辑失败';
  63. return JsonServer::error($error);
  64. }
  65. return JsonServer::success('编辑成功');
  66. }
  67. $id = $this->request->get('id');
  68. return view('', [
  69. 'detail' => AlipayLogic::detail($id)
  70. ]);
  71. }
  72. function del()
  73. {
  74. if ($this->request->isAjax()) {
  75. (new AlipayValidate())->goCheck('id');
  76. $id = $this->request->post('id');
  77. $res = AlipayLogic::del($id, $this->shop_id);
  78. if ($res === false) {
  79. $error = AlipayLogic::getError() ?: '删除失败';
  80. return JsonServer::error($error);
  81. }
  82. return JsonServer::success('删除成功');
  83. }
  84. return JsonServer::error('异常');
  85. }
  86. }