request->isAjax()){ $list = BottomNavLogic::lists(); return JsonServer::success('',$list); } return view(); } /** * Notes:编辑底部导航 * @return \think\response\Json|\think\response\View * @author: cjhao 2021/4/27 16:09 */ public function edit(){ if($this->request->isAjax()){ $post = $this->request->post(); BottomNavLogic::edit($post); return JsonServer::success('修改成功'); } $id = $this->request->get('id'); $detail = BottomNavLogic::getBootomNav($id); return view('',['detail'=>$detail]); } }