截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Goods.php 3.1KB

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\shopapi\controller;
  20. use app\common\basics\ShopApi;
  21. use app\common\server\JsonServer;
  22. use app\shopapi\logic\GoodsLogic;
  23. /**
  24. * 商品管理
  25. */
  26. class Goods extends ShopApi {
  27. /**
  28. * @notes 商品列表
  29. * @return \think\response\Json
  30. * @author Tab
  31. * @date 2021/11/10 11:16
  32. */
  33. public function lists()
  34. {
  35. $params = $this->request->param();
  36. $params['page_no'] = $this->page_no;
  37. $params['page_size'] = $this->page_size;
  38. $params['shop_id'] = $this->shop_id;
  39. $result = (new GoodsLogic())->lists($params);
  40. return JsonServer::success('', $result);
  41. }
  42. /**
  43. * @notes 操作
  44. * @return \think\response\Json
  45. * @author Tab
  46. * @date 2021/11/10 11:22
  47. */
  48. public function operation()
  49. {
  50. if ($this->request->isAjax() || !$this->request->isPost()) {
  51. return JsonServer::error("请求方式错误");
  52. }
  53. $result = (new GoodsLogic())->operation($this->shop_id, $this->request->post());
  54. if($result){
  55. return JsonServer::success('操作成功');
  56. }
  57. return JsonServer::error(GoodsLogic::getError());
  58. }
  59. /**
  60. * @notes 商品详情
  61. * @return \think\response\Json
  62. * @author Tab
  63. * @date 2021/11/10 14:17
  64. */
  65. public function detail()
  66. {
  67. $result = (new GoodsLogic())->detail($this->request->get('id'));
  68. return JsonServer::success('', $result);
  69. }
  70. /**
  71. * @notes 商品编辑
  72. * @return \think\response\Json
  73. * @author Tab
  74. * @date 2021/11/10 15:23
  75. */
  76. public function edit()
  77. {
  78. if ($this->request->isAjax() || !$this->request->isPost()) {
  79. return JsonServer::error("请求方式错误");
  80. }
  81. $result = (new GoodsLogic())->edit($this->request->post());
  82. if($result){
  83. return JsonServer::success('编辑成功');
  84. }
  85. return JsonServer::error(GoodsLogic::getError());
  86. }
  87. }