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

LiveGoods.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller\live;
  20. use app\common\basics\ShopBase;
  21. use app\common\enum\LiveRoomEnum;
  22. use app\common\server\JsonServer;
  23. use app\shop\logic\live\LiveGoodsLogic;
  24. use app\shop\validate\live\LiveGoodsValidate;
  25. /**
  26. * 直播商品
  27. * Class LiveGoods
  28. * @package app\shop\controller\live
  29. */
  30. class LiveGoods extends ShopBase
  31. {
  32. /**
  33. * @notes 直播间列表
  34. * @return \think\response\Json|\think\response\View
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @author 段誉
  39. * @date 2023/2/16 10:38
  40. */
  41. public function lists()
  42. {
  43. if ($this->request->isAjax()) {
  44. $get = $this->request->get();
  45. $get['shop_id'] = $this->shop_id;
  46. $lists = LiveGoodsLogic::lists($get);
  47. return JsonServer::success('', $lists);
  48. }
  49. return view('', [
  50. 'live_status' => LiveRoomEnum::getLiveStatusDesc()
  51. ]);
  52. }
  53. /**
  54. * @notes 添加直播商品
  55. * @return \think\response\Json|\think\response\View
  56. * @throws \GuzzleHttp\Exception\GuzzleException
  57. * @author 段誉
  58. * @date 2023/2/16 10:38
  59. */
  60. public function add()
  61. {
  62. if ($this->request->isAjax()) {
  63. $params = (new LiveGoodsValidate())->goCheck('add', ['shop_id' => $this->shop_id]);
  64. $result = LiveGoodsLogic::add($params);
  65. if ($result !== true) {
  66. return JsonServer::error(LiveGoodsLogic::getError());
  67. }
  68. return JsonServer::success('操作成功');
  69. }
  70. return view();
  71. }
  72. /**
  73. * @notes 直播商品详情
  74. * @return \think\response\View
  75. * @author 段誉
  76. * @date 2023/2/16 16:40
  77. */
  78. public function detail()
  79. {
  80. $params = (new LiveGoodsValidate())->goCheck('detail', ['shop_id' => $this->shop_id]);
  81. return view('', [
  82. 'detail' => LiveGoodsLogic::detail($params),
  83. ]);
  84. }
  85. /**
  86. * @notes 删除直播间
  87. * @return \think\response\Json|void
  88. * @author 段誉
  89. * @date 2023/2/16 10:38
  90. */
  91. public function del()
  92. {
  93. if ($this->request->isAjax()) {
  94. $params = (new LiveGoodsValidate())->goCheck('del', ['shop_id' => $this->shop_id]);
  95. $result = LiveGoodsLogic::del($params);
  96. if ($result !== true) {
  97. return JsonServer::error(LiveGoodsLogic::getError());
  98. }
  99. return JsonServer::success('操作成功');
  100. }
  101. }
  102. }