request->isAjax()) { $get = $this->request->get(); $get['shop_id'] = $this->shop_id; $lists = LiveGoodsLogic::lists($get); return JsonServer::success('', $lists); } return view('', [ 'live_status' => LiveRoomEnum::getLiveStatusDesc() ]); } /** * @notes 添加直播商品 * @return \think\response\Json|\think\response\View * @throws \GuzzleHttp\Exception\GuzzleException * @author 段誉 * @date 2023/2/16 10:38 */ public function add() { if ($this->request->isAjax()) { $params = (new LiveGoodsValidate())->goCheck('add', ['shop_id' => $this->shop_id]); $result = LiveGoodsLogic::add($params); if ($result !== true) { return JsonServer::error(LiveGoodsLogic::getError()); } return JsonServer::success('操作成功'); } return view(); } /** * @notes 直播商品详情 * @return \think\response\View * @author 段誉 * @date 2023/2/16 16:40 */ public function detail() { $params = (new LiveGoodsValidate())->goCheck('detail', ['shop_id' => $this->shop_id]); return view('', [ 'detail' => LiveGoodsLogic::detail($params), ]); } /** * @notes 删除直播间 * @return \think\response\Json|void * @author 段誉 * @date 2023/2/16 10:38 */ public function del() { if ($this->request->isAjax()) { $params = (new LiveGoodsValidate())->goCheck('del', ['shop_id' => $this->shop_id]); $result = LiveGoodsLogic::del($params); if ($result !== true) { return JsonServer::error(LiveGoodsLogic::getError()); } return JsonServer::success('操作成功'); } } }