diff --git a/app/admin/controller/Api.php b/app/admin/controller/Api.php index eaa6759..fed9b12 100644 --- a/app/admin/controller/Api.php +++ b/app/admin/controller/Api.php @@ -354,4 +354,32 @@ class Api extends BaseController return to_assign(0, '', $list); } + public function reply(){ + $data= get_params(); + $this->adminInfo = get_admin($data['admin_id']); + if ($this->adminInfo['user_id']>0){ + $useraddress = Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->where('status', 1)->find(); + $input=[]; + if ($useraddress) { + $input['county'] = $useraddress['area_id']; + $input['township'] = $useraddress['street_id']; + $input['village'] = $useraddress['village_id']; + } + $input['user_id']=$this->adminInfo['user_id']; + $input['add_time']=date('Y-m-d H:i:s'); + $input['content']=$data['reply']; + $input['vote_id']=$data['id']; + $res=Db::table('fa_article_comment')->strict(false)->field(true)->insert($input); + if ($res){ + Db::table('fa_article')->where('id',$input['vote_id'])->update(['is_solve'=>1]); + return to_assign(); + }else{ + return to_assign(1, '操作失败'); + } + }else{ + return to_assign(1, '没有绑定前端用户,无法回复'); + } + } + + } diff --git a/app/admin/controller/SzxcUserAuthentication.php b/app/admin/controller/SzxcUserAuthentication.php new file mode 100644 index 0000000..91bfe57 --- /dev/null +++ b/app/admin/controller/SzxcUserAuthentication.php @@ -0,0 +1,135 @@ +model = new SzxcUserAuthenticationModel(); + $this->uid = get_login_admin('id'); + } + /** + * 数据列表 + */ + public function datalist() + { + if (request()->isAjax()) { + $param = get_params(); + $where = []; + + $list = $this->model->getSzxcUserAuthenticationList($where,$param); + foreach ($list as $k=>$v){ + $list[$k]['sh_time'] = date('Y-m-d H:i:s',$v['sh_time']); + $list[$k]['admin_id'] = Db::table('cms_admin')->where('id',$v['id'])->value('nickname'); + } + return table_assign(0, '', $list); + } + else{ + return view(); + } + } + + /** + * 添加 + */ + public function add() + { + if (request()->isAjax()) { + $param = get_params(); + + // 检验完整性 + try { + validate(SzxcUserAuthenticationValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + + $this->model->addSzxcUserAuthentication($param); + }else{ + return view(); + } + } + + + /** + * 编辑 + */ + public function edit() + { + $param = get_params(); + + if (request()->isAjax()) { + // 检验完整性 + try { + validate(SzxcUserAuthenticationValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + + $this->model->editSzxcUserAuthentication($param); + }else{ + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getSzxcUserAuthenticationById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + } + + + /** + * 查看信息 + */ + public function read() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = $this->model->getSzxcUserAuthenticationById($id); + if (!empty($detail)) { + View::assign('detail', $detail); + return view(); + } + else{ + throw new \think\exception\HttpException(404, '找不到页面'); + } + } + + /** + * 删除 + * type=0,逻辑删除,默认 + * type=1,物理删除 + */ + public function del() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $type = isset($param['type']) ? $param['type'] : 0; + + $this->model->delSzxcUserAuthenticationById($id,$type); + } +} diff --git a/app/admin/controller/nk/Article.php b/app/admin/controller/nk/Article.php index da428d4..0b563a4 100644 --- a/app/admin/controller/nk/Article.php +++ b/app/admin/controller/nk/Article.php @@ -136,7 +136,14 @@ class Article extends BaseController $id = isset($param['id']) ? $param['id'] : 0; $detail = Db::table('fa_article')->where('id',$id)->find(); if (!empty($detail)) { + $detail['comment'] = Db::table('fa_article_comment') + ->where('vote_id',$id) + ->withAttr('user_info',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->select(); View::assign('detail', $detail); + View::assign('admin_id', $this->adminInfo['id']); } else{ throw new \think\exception\HttpException(404, '找不到页面'); @@ -149,7 +156,7 @@ class Article extends BaseController { $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_article')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_article')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/Comment.php b/app/admin/controller/nk/Comment.php index ebd0399..7e21865 100644 --- a/app/admin/controller/nk/Comment.php +++ b/app/admin/controller/nk/Comment.php @@ -170,7 +170,7 @@ class Comment extends BaseController $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]); + $res = Db::table('fa_article_comment')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/Complaint.php b/app/admin/controller/nk/Complaint.php index 643040d..8f9b8b3 100644 --- a/app/admin/controller/nk/Complaint.php +++ b/app/admin/controller/nk/Complaint.php @@ -177,7 +177,7 @@ class Complaint extends BaseController $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]); + $res = Db::table('fa_article_complaint')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/Slide.php b/app/admin/controller/nk/Slide.php new file mode 100644 index 0000000..73709f9 --- /dev/null +++ b/app/admin/controller/nk/Slide.php @@ -0,0 +1,168 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.slide/index', + '/admin/nk.slide/add', + '/admin/nk.slide/edit', + '/admin/nk.slide/del', + '/admin/nk.slide/read', + ]; + + } + /** + * 数据列表 + */ + 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_slide') + ->where($where) + ->count(); + $list = Db::table('fa_slide') + ->withAttr('area',function ($value,$data){ + return Db::table('fa_geo_area')->where('area_code',$data['county'])->value('area_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('create_time',function ($value,$data){ + return date('Y-m-d H:i:s',$data['create_time']); + }) + ->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/slide/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']; + $param['create_time']= time(); + $res=Db::table('fa_slide')->strict(false)->field(true)->insertGetId($param); + if ($res){ + return to_assign(0,'操作成功',['aid'=>$res]); + } + return to_assign(1, '操作失败,原因:'.$res); + }else{ + View::assign('editor', get_system_config('other','editor')); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $param['update_time']= time(); + $res=Db::table('fa_slide')->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_slide')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + 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_slide')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + 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_slide')->where('id',$id)->delete(); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/Slideinfo.php b/app/admin/controller/nk/Slideinfo.php new file mode 100644 index 0000000..65a2534 --- /dev/null +++ b/app/admin/controller/nk/Slideinfo.php @@ -0,0 +1,172 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.slideinfo/index', + '/admin/nk.slideinfo/add', + '/admin/nk.slideinfo/edit', + '/admin/nk.slideinfo/del', + '/admin/nk.slideinfo/read', + ]; +// 获取轮播位置 + $this->slide = Db::table('fa_slide')->where('status',1)->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_slide_info') + ->where($where) + ->count(); + $list = Db::table('fa_slide_info') + ->withAttr('area',function ($value,$data){ + return Db::table('fa_geo_area')->where('area_code',$data['county'])->value('area_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('create_time',function ($value,$data){ + return date('Y-m-d H:i:s',$data['create_time']); + }) + ->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/slideinfo/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']; + $param['create_time']= time(); + $res=Db::table('fa_slide_info')->strict(false)->field(true)->insertGetId($param); + if ($res){ + return to_assign(0,'操作成功',['aid'=>$res]); + } + return to_assign(1, '操作失败,原因:'.$res); + }else{ + View::assign('editor', get_system_config('other','editor')); + View::assign('slide', $this->slide); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $param['update_time']= time(); + $res=Db::table('fa_slide_info')->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_slide_info')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('slide', $this->slide); + 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_slide_info')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('slide', $this->slide); + 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_slide_info')->where('id',$id)->delete(); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/party/Article.php b/app/admin/controller/nk/party/Article.php index 1ab85ec..640946d 100644 --- a/app/admin/controller/nk/party/Article.php +++ b/app/admin/controller/nk/party/Article.php @@ -164,7 +164,7 @@ class Article extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_article')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_article')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/Branch.php b/app/admin/controller/nk/party/Branch.php index 29f1dcb..9f5cf8d 100644 --- a/app/admin/controller/nk/party/Branch.php +++ b/app/admin/controller/nk/party/Branch.php @@ -160,7 +160,7 @@ class Branch extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_branch')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_branch')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/BranchPayList.php b/app/admin/controller/nk/party/BranchPayList.php index f388bd0..e9427a6 100644 --- a/app/admin/controller/nk/party/BranchPayList.php +++ b/app/admin/controller/nk/party/BranchPayList.php @@ -168,7 +168,7 @@ class BranchPayList extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_branch_pay_list')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_branch_pay_list')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/BranchPayUser.php b/app/admin/controller/nk/party/BranchPayUser.php index e1bfadb..e755ab6 100644 --- a/app/admin/controller/nk/party/BranchPayUser.php +++ b/app/admin/controller/nk/party/BranchPayUser.php @@ -175,7 +175,7 @@ class BranchPayUser extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_branch_pay_user')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_branch_pay_user')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/Info.php b/app/admin/controller/nk/party/Info.php index da91572..5889452 100644 --- a/app/admin/controller/nk/party/Info.php +++ b/app/admin/controller/nk/party/Info.php @@ -199,7 +199,7 @@ class Info extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_info')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_info')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/Vote.php b/app/admin/controller/nk/party/Vote.php index c1300c2..cf642dd 100644 --- a/app/admin/controller/nk/party/Vote.php +++ b/app/admin/controller/nk/party/Vote.php @@ -163,7 +163,7 @@ class Vote extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_vote')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_vote')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/controller/nk/party/VoteComment.php b/app/admin/controller/nk/party/VoteComment.php index 2017371..995c3a6 100644 --- a/app/admin/controller/nk/party/VoteComment.php +++ b/app/admin/controller/nk/party/VoteComment.php @@ -161,7 +161,7 @@ class VoteComment extends BaseController $param= get_params(); $id = isset($param['id']) ? $param['id'] : 0; $type = isset($param['type']) ? $param['type'] : 0; - $res = Db::table('fa_szxc_party_vote_comment')->where('id',$id)->update(['status'=>$type]); + $res = Db::table('fa_szxc_party_vote_comment')->where('id',$id)->delete(); if ($res){ return to_assign(); }else{ diff --git a/app/admin/model/SzxcUserAuthentication.php b/app/admin/model/SzxcUserAuthentication.php new file mode 100644 index 0000000..71a574f --- /dev/null +++ b/app/admin/model/SzxcUserAuthentication.php @@ -0,0 +1,102 @@ +field('id,user_id,name,idcard,pic_z,pic_f,status,create_time,update_time,admin_id')->order($order)->paginate($rows, false, ['query' => $param]); + return $list; + } + + /** + * 添加数据 + * @param $param + */ + public function addSzxcUserAuthentication($param) + { + $insertId = 0; + try { + $param['create_time'] = time(); + $insertId = self::strict(false)->field(true)->insertGetId($param); + add_log('add', $insertId, $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(0,'操作成功',['aid'=>$insertId]); + } + + /** + * 编辑信息 + * @param $param + */ + public function editSzxcUserAuthentication($param) + { + try { + $param['update_time'] = time(); + $find = self::where('id', $param['id'])->find(); + if($param['status'] != $find['status']){ + $param['sh_time'] = time(); + $param['admin_id'] = get_login_admin('id'); + } + self::where('id', $param['id'])->strict(false)->field(true)->update($param); + add_log('edit', $param['id'], $param); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + return to_assign(); + } + + + /** + * 根据id获取信息 + * @param $id + */ + public function getSzxcUserAuthenticationById($id) + { + $info = self::where('id', $id)->find(); + return $info; + } + + /** + * 删除信息 + * @param $id + * @return array + */ + public function delSzxcUserAuthenticationById($id,$type=0) + { + if($type==0){ + //逻辑删除 + try { + $param['delete_time'] = time(); + self::where('id', $id)->update(['delete_time'=>time()]); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + else{ + //物理删除 + try { + self::where('id', $id)->delete(); + add_log('delete', $id); + } catch(\Exception $e) { + return to_assign(1, '操作失败,原因:'.$e->getMessage()); + } + } + return to_assign(); + } +} + diff --git a/app/admin/validate/SzxcUserAuthenticationValidate.php b/app/admin/validate/SzxcUserAuthenticationValidate.php new file mode 100644 index 0000000..2239e86 --- /dev/null +++ b/app/admin/validate/SzxcUserAuthenticationValidate.php @@ -0,0 +1,28 @@ + 'require', + 'idcard' => 'require', + 'pic_z' => 'require', + 'pic_f' => 'require', + 'status' => 'require', +]; + + protected $message = [ + 'name.require' => '姓名不能为空', + 'idcard.require' => '身份证号不能为空', + 'pic_z.require' => '身份证正面不能为空', + 'pic_f.require' => '身份证反面不能为空', + 'status.require' => '审核状态不能为空', +]; +} \ No newline at end of file diff --git a/app/admin/view/nk/article/read.html b/app/admin/view/nk/article/read.html index 5c8280e..d060d7f 100644 --- a/app/admin/view/nk/article/read.html +++ b/app/admin/view/nk/article/read.html @@ -33,7 +33,61 @@ {$detail.content|raw} + + {if in_array($detail.category_id,[149,157,158,148,147,165]) } + + 回复内容: + + {volist name="$detail.comment" id="vo"} + {$vo.user_info}的回复:{$vo.content}
+ {/volist} + + + {/if} + + {if in_array($detail.category_id,[149,157,158,148,147,165]) } + + 回复: + + + + + {/if} + + + {if in_array($detail.category_id,[149,157,158,148,147,165]) } +
+ + + + +
+ {/if} {/block} - \ No newline at end of file + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/slide/add.html b/app/admin/view/nk/slide/add.html new file mode 100644 index 0000000..9fb9927 --- /dev/null +++ b/app/admin/view/nk/slide/add.html @@ -0,0 +1,81 @@ +{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/slide/edit.html b/app/admin/view/nk/slide/edit.html new file mode 100644 index 0000000..69fc3f8 --- /dev/null +++ b/app/admin/view/nk/slide/edit.html @@ -0,0 +1,86 @@ +{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/slide/index.html b/app/admin/view/nk/slide/index.html new file mode 100644 index 0000000..2b808f4 --- /dev/null +++ b/app/admin/view/nk/slide/index.html @@ -0,0 +1,147 @@ +{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/slide/read.html b/app/admin/view/nk/slide/read.html new file mode 100644 index 0000000..df9bcb5 --- /dev/null +++ b/app/admin/view/nk/slide/read.html @@ -0,0 +1,44 @@ +{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/slideinfo/add.html b/app/admin/view/nk/slideinfo/add.html new file mode 100644 index 0000000..739ed3b --- /dev/null +++ b/app/admin/view/nk/slideinfo/add.html @@ -0,0 +1,122 @@ +{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/slideinfo/edit.html b/app/admin/view/nk/slideinfo/edit.html new file mode 100644 index 0000000..71a193e --- /dev/null +++ b/app/admin/view/nk/slideinfo/edit.html @@ -0,0 +1,105 @@ +{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/slideinfo/index.html b/app/admin/view/nk/slideinfo/index.html new file mode 100644 index 0000000..5bc8f14 --- /dev/null +++ b/app/admin/view/nk/slideinfo/index.html @@ -0,0 +1,175 @@ +{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/slideinfo/read.html b/app/admin/view/nk/slideinfo/read.html new file mode 100644 index 0000000..c48f43b --- /dev/null +++ b/app/admin/view/nk/slideinfo/read.html @@ -0,0 +1,62 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

详情

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
轮播位置* +
+ +
+
标题*
描述
图片 +
+
+ + +
+
+
跳转路径*
+
+{/block} + \ No newline at end of file diff --git a/app/admin/view/szxc_user_authentication/add.html b/app/admin/view/szxc_user_authentication/add.html new file mode 100644 index 0000000..72e035c --- /dev/null +++ b/app/admin/view/szxc_user_authentication/add.html @@ -0,0 +1,97 @@ +{extend name="common/base"/} + +{block name="body"} +
+

新建用户实名

+ + + + + + + + + + + +
姓名*身份证号*审核状态* + + +
身份证正面* +
+ +
+ + +
+
+
身份证反面* +
+ +
+ + +
+
+
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/szxc_user_authentication/datalist.html b/app/admin/view/szxc_user_authentication/datalist.html new file mode 100644 index 0000000..64126df --- /dev/null +++ b/app/admin/view/szxc_user_authentication/datalist.html @@ -0,0 +1,175 @@ +{extend name="common/base"/} + +{block name="body"} + +
+
+
+ +
+ +
+
+
+ + + + + + +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/szxc_user_authentication/edit.html b/app/admin/view/szxc_user_authentication/edit.html new file mode 100644 index 0000000..1313dc6 --- /dev/null +++ b/app/admin/view/szxc_user_authentication/edit.html @@ -0,0 +1,103 @@ +{extend name="common/base"/} + +{block name="body"} +
+

编辑用户实名

+ + + + + + + + + + + + + + + + +
姓名*身份证号*
审核状态* + + + +
身份证正面* +
+ +
+ + +
+
+
身份证反面* +
+ +
+ + +
+
+
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/admin/view/szxc_user_authentication/read.html b/app/admin/view/szxc_user_authentication/read.html new file mode 100644 index 0000000..c69b03c --- /dev/null +++ b/app/admin/view/szxc_user_authentication/read.html @@ -0,0 +1,35 @@ +{extend name="common/base"/} + +{block name="body"} +
+

用户实名详情

+ + + + + + + + + + + + + + + + +
用户id{$detail.user_id}姓名{$detail.name}身份证号{$detail.idcard}
审核状态 + {eq name="$detail.status" value="0"}选项一{/eq} + {eq name="$detail.status" value="1"}选项二{/eq} + 提交时间{$detail.create_time|time_format=###,'Y-m-d'}审核时间{$detail.update_time|time_format=###,'Y-m-d'}
审核人 + {eq name="$detail.admin_id" value="1"}选项一{/eq} + {eq name="$detail.admin_id" value="2"}选项二{/eq} +
身份证正面 + +
身份证反面 + +
+
+{/block} + \ No newline at end of file diff --git a/app/api/controller/User.php b/app/api/controller/User.php index 0e2bbdf..6d0bdf6 100644 --- a/app/api/controller/User.php +++ b/app/api/controller/User.php @@ -32,7 +32,13 @@ class User extends BaseController { $user = Db::table('fa_user')->where('id',JWT_UID)->find(); $user_msg = Db::table('fa_szxc_information_usermsg')->where('user_id',JWT_UID)->field('id,name,address_name,phone')->find(); - $this->apiSuccess('', ['nickname' => $user['nickname'],'phone'=>$user_msg['phone'],'avatar'=>$user['avatar'],'address_name'=>$user_msg['address_name'],'name'=>$user_msg['name']]); + $this->apiSuccess('', [ + 'nickname' => $user['nickname'], + 'phone'=>$user_msg['phone'], + 'avatar'=>$user['avatar'], + 'address_name'=>$user_msg['address_name'], + 'name'=>$user_msg['name'] + ]); } /** @@ -423,4 +429,51 @@ class User extends BaseController $this->apiError($this->auth->getError()); } } + +// 用户实名认证 + public function realname(){ + $params = get_params(); + $uid = JWT_UID; + $params['user_id'] = $uid; + $is_have = Db::table('cms_szxc_user_authentication')->where('user_id',$uid)->find(); + if($is_have){ + if($is_have['status'] == 0){ + $this->apiError('您的实名认证正在审核中','您的实名认证正在审核中'); + }elseif ($is_have['status'] == 1){ + $this->apiError('您的实名认证已通过','您的实名认证已通过'); + }elseif ($is_have['status'] == 2){ + $params['status'] = 0; + $params['create_time'] = time(); + $res = Db::table('cms_szxc_user_authentication')->where('user_id',$uid)->strict(false)->field(true)->update($params); + if($res){ + $this->apiSuccess('提交成功'); + }else { + $this->apiError('提交失败'); + } + }else{ + $this->apiError('数据出错了','数据出错了'); + } + }else{ + $params['create_time'] = time(); + $res = Db::table('cms_szxc_user_authentication')->strict(false)->field(true)->insert($params); + if($res){ + $this->apiSuccess('提交成功'); + }else { + $this->apiError('提交失败'); + } + } + } + +// 获取实名认证信息 + public function get_shiming(){ + $uid = JWT_UID; + $is_have = Db::table('cms_szxc_user_authentication')->where('user_id',$uid)->find(); + if($is_have){ + $this->apiSuccess('获取成功',$is_have); + }else{ + $this->apiError('您还没有提交实名认证','您还没有提交实名认证'); + } + } + + }