From 66784bc0b32582ef3db546a021e6f339000c0548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Wed, 1 Feb 2023 16:52:28 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=96=87=E7=AB=A0=E8=AF=84=E8=AE=BA?= =?UTF-8?q?=E3=80=81=E6=8A=95=E8=AF=89=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/nk/Comment.php | 182 ++++++++++++++++++++++++ app/admin/controller/nk/Complaint.php | 189 +++++++++++++++++++++++++ app/admin/view/nk/comment/add.html | 109 ++++++++++++++ app/admin/view/nk/comment/edit.html | 83 +++++++++++ app/admin/view/nk/comment/index.html | 149 +++++++++++++++++++ app/admin/view/nk/comment/read.html | 41 ++++++ app/admin/view/nk/complaint/add.html | 109 ++++++++++++++ app/admin/view/nk/complaint/edit.html | 109 ++++++++++++++ app/admin/view/nk/complaint/index.html | 149 +++++++++++++++++++ app/admin/view/nk/complaint/read.html | 65 +++++++++ 10 files changed, 1185 insertions(+) create mode 100644 app/admin/controller/nk/Comment.php create mode 100644 app/admin/controller/nk/Complaint.php create mode 100644 app/admin/view/nk/comment/add.html create mode 100644 app/admin/view/nk/comment/edit.html create mode 100644 app/admin/view/nk/comment/index.html create mode 100644 app/admin/view/nk/comment/read.html create mode 100644 app/admin/view/nk/complaint/add.html create mode 100644 app/admin/view/nk/complaint/edit.html create mode 100644 app/admin/view/nk/complaint/index.html create mode 100644 app/admin/view/nk/complaint/read.html diff --git a/app/admin/controller/nk/Comment.php b/app/admin/controller/nk/Comment.php new file mode 100644 index 0000000..ebd0399 --- /dev/null +++ b/app/admin/controller/nk/Comment.php @@ -0,0 +1,182 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.comment/index', + '/admin/nk.comment/add', + '/admin/nk.comment/edit', + '/admin/nk.comment/del', + '/admin/nk.comment/read', + ]; +// 获取用户信息 + $this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->field('user_id,name')->select(); + + } + /** + * 数据列表 + */ + public function index() + { + if (request()->isAjax()) { + $params= get_params(); +// $where['status']=1; + $where = []; + if (isset($params['keywords'])){ +// $where[]=['title','like','%'.$params['keywords'].'%']; + } + if($this->adminInfo['position_id'] != 1){ //不是超级管理员 + $www['admin_id'] = $this->adminInfo['id']; + $user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find(); + if ($user_address){ + if($user_address['auth_range'] == 1){ + $where['village'] = $user_address['village_id']; + }elseif ($user_address['auth_range'] == 2){ + $where['township'] = $user_address['street_id']; + }elseif ($user_address['auth_range'] == 3){ + $where['county'] = $user_address['area_id']; + }else{ + $where['village'] = $user_address['village_id']; + } + }else{ + $where['village'] = ''; + } + } + + $total = Db::table('fa_article_comment') + ->where($where) + ->count(); + $list = Db::table('fa_article_comment') + ->withAttr('name',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->withAttr('street',function ($value,$data){ + return Db::table('fa_geo_street')->where('street_code',$data['township'])->value('street_name'); + }) + ->withAttr('village',function ($value,$data){ + return Db::table('fa_geo_village')->where('village_id',$data['village'])->value('village_name'); + }) + ->withAttr('status',function ($value,$data){ + if($value == 1){ + return '通过'; + }else{ + return '不通过'; + } + }) + ->where($where) + ->page($params['page']) + ->limit($params['limit']) + ->order('id desc') + ->select(); + $result = ['total' => $total, 'data' => $list]; + return table_assign(0, '', $result); + } + else{ + return view('nk/comment/index',['url'=>$this->url]); + } + } + + public function add(){ + if (request()->isAjax()) { + $param= get_params(); + $adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find(); + $param['county']=$adds['area_id']; + $param['township']=$adds['street_id']; + $param['village']=$adds['village_id']; + $res=Db::table('fa_article_comment')->strict(false)->field(true)->insertGetId($param); + if ($res){ + return to_assign(0,'操作成功',['aid'=>$res]); + } + return to_assign(1, '操作失败,原因:'.$res); + }else{ + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('editor', get_system_config('other','editor')); + View::assign('users', $this->users); + View::assign('article', $article); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_article_comment')->where('id',$param['id'])->strict(false)->field(true)->update($param); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = Db::table('fa_article_comment')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('article', $article); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + /** + * 查看信息 + */ + public function read() + { + $param= get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = Db::table('fa_article_comment')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('article', $article); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + /** + * 删除 + */ + public function del() + { + $param= get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + $res = Db::table('fa_article_comment')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/Complaint.php b/app/admin/controller/nk/Complaint.php new file mode 100644 index 0000000..643040d --- /dev/null +++ b/app/admin/controller/nk/Complaint.php @@ -0,0 +1,189 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.complaint/index', + '/admin/nk.complaint/add', + '/admin/nk.complaint/edit', + '/admin/nk.complaint/del', + '/admin/nk.complaint/read', + ]; +// 获取用户信息 + $this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->field('user_id,name')->select(); + + } + /** + * 数据列表 + */ + public function index() + { + if (request()->isAjax()) { + $params= get_params(); + $where['status']=1; + if (isset($params['keywords'])){ +// $where[]=['title','like','%'.$params['keywords'].'%']; + } + if($this->adminInfo['position_id'] != 1){ //不是超级管理员 + $www['admin_id'] = $this->adminInfo['id']; + $user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find(); + if ($user_address){ + if($user_address['auth_range'] == 1){ + $where['village'] = $user_address['village_id']; + }elseif ($user_address['auth_range'] == 2){ + $where['township'] = $user_address['street_id']; + }elseif ($user_address['auth_range'] == 3){ + $where['county'] = $user_address['area_id']; + }else{ + $where['village'] = $user_address['village_id']; + } + }else{ + $where['village'] = ''; + } + } + + $total = Db::table('fa_article_complaint') + ->where($where) + ->count(); + $list = Db::table('fa_article_complaint') + ->withAttr('name',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->withAttr('title',function ($value,$data){ + return Db::table('fa_article')->where('id',$data['article_id'])->value('title'); + }) + ->withAttr('street',function ($value,$data){ + return Db::table('fa_geo_street')->where('street_code',$data['township'])->value('street_name'); + }) + ->withAttr('village',function ($value,$data){ + return Db::table('fa_geo_village')->where('village_id',$data['village'])->value('village_name'); + }) + ->withAttr('createtime',function ($value,$data){ + return date('Y-m-d H:i:s',$data['createtime']); + }) + ->withAttr('type',function ($value,$data){ + if($value == 1){ + return '文章'; + }elseif($value == 2){ + return '朋友圈'; + }else{ + return ''; + } + }) + ->where($where) + ->page($params['page']) + ->limit($params['limit']) + ->order('id desc') + ->select(); + $result = ['total' => $total, 'data' => $list]; + return table_assign(0, '', $result); + } + else{ + return view('nk/complaint/index',['url'=>$this->url]); + } + } + + public function add(){ + if (request()->isAjax()) { + $param= get_params(); + $adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find(); + $param['county']=$adds['area_id']; + $param['township']=$adds['street_id']; + $param['village']=$adds['village_id']; + $res=Db::table('fa_article_complaint')->strict(false)->field(true)->insertGetId($param); + if ($res){ + return to_assign(0,'操作成功',['aid'=>$res]); + } + return to_assign(1, '操作失败,原因:'.$res); + }else{ + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('editor', get_system_config('other','editor')); + View::assign('users', $this->users); + View::assign('article', $article); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_article_complaint')->where('id',$param['id'])->strict(false)->field(true)->update($param); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = Db::table('fa_article_complaint')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('article', $article); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + /** + * 查看信息 + */ + public function read() + { + $param= get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = Db::table('fa_article_complaint')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + $article = Db::table('fa_article')->where('status',1)->field('id,title')->select(); + View::assign('article', $article); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + /** + * 删除 + */ + public function del() + { + $param= get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + $res = Db::table('fa_article_complaint')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/view/nk/comment/add.html b/app/admin/view/nk/comment/add.html new file mode 100644 index 0000000..223d082 --- /dev/null +++ b/app/admin/view/nk/comment/add.html @@ -0,0 +1,109 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/comment/edit.html b/app/admin/view/nk/comment/edit.html new file mode 100644 index 0000000..29081e3 --- /dev/null +++ b/app/admin/view/nk/comment/edit.html @@ -0,0 +1,83 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} + +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/comment/index.html b/app/admin/view/nk/comment/index.html new file mode 100644 index 0000000..e3bc290 --- /dev/null +++ b/app/admin/view/nk/comment/index.html @@ -0,0 +1,149 @@ +{extend name="common/base"/} + +{block name="body"} + +评论* | ++ + | +|||||
回复* | ++ + | +|||||
状态* | ++ + + | +
用户* | +
+
+
+
+ |
+ ||||||
文章id* | +
+
+
+
+ |
+ ||||||
标识* | ++ + | +||||||
投诉内容* | ++ + | +