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"} +
+

添加

+ + + + + + + + + + + + + + + + + + + + + + + + +
用户* +
+ +
+
文章id* +
+ +
+
标识* + +
投诉内容* + +
+
+ + +
+
+{/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"} + +
+ + + + + + +
+
+ + + + + + + + +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/comment/read.html b/app/admin/view/nk/comment/read.html new file mode 100644 index 0000000..4ec0331 --- /dev/null +++ b/app/admin/view/nk/comment/read.html @@ -0,0 +1,41 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

详情

+ + + + + + + + + + + + + + + + + +
评论* + +
回复* + +
状态* + + +
+
+{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/complaint/add.html b/app/admin/view/nk/complaint/add.html new file mode 100644 index 0000000..223d082 --- /dev/null +++ b/app/admin/view/nk/complaint/add.html @@ -0,0 +1,109 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

添加

+ + + + + + + + + + + + + + + + + + + + + + + + +
用户* +
+ +
+
文章id* +
+ +
+
标识* + +
投诉内容* + +
+
+ + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/complaint/edit.html b/app/admin/view/nk/complaint/edit.html new file mode 100644 index 0000000..6f0ac1f --- /dev/null +++ b/app/admin/view/nk/complaint/edit.html @@ -0,0 +1,109 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

编辑

+ + + + + + + + + + + + + + + + + + + + + + + + + +
用户* +
+ +
+
文章id* +
+ +
+
标识* + +
投诉内容* + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/complaint/index.html b/app/admin/view/nk/complaint/index.html new file mode 100644 index 0000000..b106912 --- /dev/null +++ b/app/admin/view/nk/complaint/index.html @@ -0,0 +1,149 @@ +{extend name="common/base"/} + +{block name="body"} + +
+ + + + + + +
+
+ + + + + + + + +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/complaint/read.html b/app/admin/view/nk/complaint/read.html new file mode 100644 index 0000000..1e8dd9f --- /dev/null +++ b/app/admin/view/nk/complaint/read.html @@ -0,0 +1,65 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

详情

+ + + + + + + + + + + + + + + + + + + + + + + +
用户* +
+ +
+
文章id* +
+ +
+
标识* + +
投诉内容* + +
+
+{/block} + \ No newline at end of file From 3a628c3ca4ad1a367575ebce952e2fdac17794aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Thu, 2 Feb 2023 10:58:44 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E7=82=B9=E8=B5=9E=E6=9D=91=E5=BA=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Village.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/api/controller/Village.php b/app/api/controller/Village.php index 571c3c8..8599043 100644 --- a/app/api/controller/Village.php +++ b/app/api/controller/Village.php @@ -319,12 +319,23 @@ class Village extends BaseController } $this->apiSuccess('获取成功', $news); } else { + // 判断redis + if(JWT_UID){ + $name = JWT_UID . $address['village_id']; + $is_zan = Cache::store('redis')->get($name); + if($is_zan){ + $news['is_dz'] = 1; + }else{ + $news['is_dz'] = 0; + } + }else{ + $news['is_dz'] = 0; + } $news['id'] = $address['village_id']; $news['title'] = $address_name; $news['address'] = $address_name; $news['images'] = ["https://lihai001.oss-cn-chengdu.aliyuncs.com/uploads/20230115/4dc84e69408fef859e8553a5c7091197.jpg"]; $news['info'] = $address_name; - $news['is_dz'] = 0; $news['area_id'] = $address['area_id']; $news['street_id'] = $address['street_id']; $news['village_id'] = $address['village_id']; From 7a0f015995f4630a3a520d2c41424336b6c2803b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Thu, 2 Feb 2023 11:08:58 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E4=BF=AE=E6=94=B91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Maintainentry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/controller/Maintainentry.php b/app/api/controller/Maintainentry.php index 94f2a74..d55b20a 100644 --- a/app/api/controller/Maintainentry.php +++ b/app/api/controller/Maintainentry.php @@ -1658,7 +1658,7 @@ class Maintainentry extends BaseController // 获取家庭的人员信息 $res = Db::table('fa_szxc_information_usermsg')->where($map) ->order('id desc') - ->field("id,user_id,name,age,gender,family_num,political_outlook,householder_id,is_hz,address_name,family_relation") + ->field("id,user_id,name,age,gender,family_num,political_outlook,householder_id,is_hz,address_name,family_relation,phone") ->withAttr('avatar', function ($value, $data) { return Db::table('fa_user')->where('id', $data['user_id'])->value('avatar'); })