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

LiveGoods.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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\admin\controller\live;
  20. use app\admin\logic\live\LiveRoomLogic;
  21. use app\common\basics\AdminBase;
  22. use app\common\server\JsonServer;
  23. use app\admin\logic\live\LiveGoodsLogic;
  24. use app\admin\validate\live\LiveGoodsValidate;
  25. /**
  26. * 直播商品
  27. * Class LiveGoods
  28. * @package app\admin\controller\live
  29. */
  30. class LiveGoods extends AdminBase
  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. $lists = LiveGoodsLogic::lists($get);
  46. return JsonServer::success('', $lists);
  47. }
  48. return view('', [
  49. 'shop' => LiveRoomLogic::shopLists()
  50. ]);
  51. }
  52. /**
  53. * @notes 添加直播商品
  54. * @return \think\response\Json|\think\response\View
  55. * @throws \GuzzleHttp\Exception\GuzzleException
  56. * @author 段誉
  57. * @date 2023/2/16 10:38
  58. */
  59. public function audit()
  60. {
  61. if ($this->request->isAjax()) {
  62. $params = (new LiveGoodsValidate())->goCheck('audit');
  63. $result = LiveGoodsLogic::audit($params);
  64. if ($result !== true) {
  65. return JsonServer::error(LiveGoodsLogic::getError());
  66. }
  67. return JsonServer::success('操作成功');
  68. }
  69. $id = $this->request->get('id');
  70. return view('', [
  71. 'detail' => LiveGoodsLogic::detail($id),
  72. ]);
  73. }
  74. /**
  75. * @notes 直播商品详情
  76. * @return \think\response\View
  77. * @author 段誉
  78. * @date 2023/2/16 16:40
  79. */
  80. public function detail()
  81. {
  82. $params = (new LiveGoodsValidate())->goCheck('detail');
  83. return view('', [
  84. 'detail' => LiveGoodsLogic::detail($params),
  85. ]);
  86. }
  87. /**
  88. * @notes 删除直播商品
  89. * @return \think\response\Json|void
  90. * @author 段誉
  91. * @date 2023/2/17 10:20
  92. */
  93. public function del()
  94. {
  95. if ($this->request->isAjax()) {
  96. $params = (new LiveGoodsValidate())->goCheck('del');
  97. $result = LiveGoodsLogic::del($params);
  98. if ($result !== true) {
  99. return JsonServer::error(LiveGoodsLogic::getError());
  100. }
  101. return JsonServer::success('操作成功');
  102. }
  103. }
  104. }