request->isAjax()) { $get = $this->request->get(); $list = FaceSheetSenderLogic::lists($get, $this->shop_id); return JsonServer::success("", $list); } return view(); } /** * @notes 新增发件人模板 * @return \think\response\Json|\think\response\View * @author 段誉 * @date 2023/2/13 16:39 */ public function add() { if ($this->request->isAjax()) { $post = $this->request->post(); $result = FaceSheetSenderLogic::add($post, $this->shop_id); if ($result !== true) { return JsonServer::error($result); } return JsonServer::success("操作成功"); } return view(); } /** * @notes 编辑发件人 * @return \think\response\Json|\think\response\View * @author 段誉 * @date 2023/2/13 16:40 */ public function edit() { if ($this->request->isAjax()) { $post = $this->request->post(); $result = FaceSheetSenderLogic::edit($post, $this->shop_id); if ($result !== true) { return JsonServer::error($result); } return JsonServer::success("操作成功"); } $id = $this->request->get('id'); return view('', [ 'detail' => FaceSheetSenderLogic::detail($id, $this->shop_id) ]); } /** * @notes 删除发件人 * @return \think\response\Json|void * @author 段誉 * @date 2023/2/13 16:40 */ public function del() { if ($this->request->isAjax()) { $id = $this->request->post('id'); $result = FaceSheetSenderLogic::del($id, $this->shop_id); if ($result !== true) { return JsonServer::error($result); } return JsonServer::success("操作成功"); } } }