diff --git a/app/admin/controller/nk/party/Article.php b/app/admin/controller/nk/party/Article.php new file mode 100644 index 0000000..1ab85ec --- /dev/null +++ b/app/admin/controller/nk/party/Article.php @@ -0,0 +1,174 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.party.article/index', + '/admin/nk.party.article/add', + '/admin/nk.party.article/edit', + '/admin/nk.party.article/del', + '/admin/nk.party.article/read', + ]; + } + + + 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_szxc_party_article') + ->where($where) + ->count(); + $list = Db::table('fa_szxc_party_article') + ->withAttr('nickname',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->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'); + }) + ->where($where) + ->page($params['page']) + ->limit($params['limit']) + ->order('id desc') + ->field('id,title,user_id,county,township,village,image,view_time') + ->select(); + $result = ['total' => $total, 'data' => $list]; + return table_assign(0, '', $result); + } + else{ + return view('nk/party/article/index',['url'=>$this->url]); + } + } + + public function add(){ + if (request()->isAjax()) { + $param= get_params(); + // 检验完整性 + try { + validate(\app\admin\validate\nk\ArticleValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $adds=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->find(); + $param['view_time']=date('Y-m-d H:i:s'); + $param['county']=$adds['area_id']; + $param['township']=$adds['street_id']; + $param['village']=$adds['village_id']; + $param['user_id']=$adds['user_id']; + $res=Db::table('fa_szxc_party_article')->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()) { + try { + validate(\app\admin\validate\nk\ArticleValidate::class)->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $res=Db::table('fa_szxc_party_article')->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_szxc_party_article')->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_szxc_party_article')->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_szxc_party_article')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } +} diff --git a/app/admin/controller/nk/party/Branch.php b/app/admin/controller/nk/party/Branch.php new file mode 100644 index 0000000..29f1dcb --- /dev/null +++ b/app/admin/controller/nk/party/Branch.php @@ -0,0 +1,172 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.party.branch/index', + '/admin/nk.party.branch/add', + '/admin/nk.party.branch/edit', + '/admin/nk.party.branch/del', + '/admin/nk.party.branch/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_szxc_party_branch') + ->where($where) + ->count(); + $list = Db::table('fa_szxc_party_branch') + ->withAttr('nickname',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->withAttr('nickname2',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['two_user_id'])->value('name'); + }) + ->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'); + }) + ->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/party/branch/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_szxc_party_branch')->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('users', $this->users); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_szxc_party_branch')->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_szxc_party_branch')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + 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_szxc_party_branch')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + 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_szxc_party_branch')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/party/BranchPayList.php b/app/admin/controller/nk/party/BranchPayList.php new file mode 100644 index 0000000..bc50c8d --- /dev/null +++ b/app/admin/controller/nk/party/BranchPayList.php @@ -0,0 +1,101 @@ +model = new \app\admin\model\party\BranchPayList; + + } + + /** + * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 + * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 + * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 + */ + /** + * 查看 + */ + public function index() + { + + //设置过滤方法 + $this->request->filter(['strip_tags']); + if ($this->request->isAjax()) { +// dump();die; + //如果发送的来源是Selectpage,则转发到Selectpage + if ($this->request->request('keyField')) { + return $this->selectpage(); + } + [$where, $sort, $order, $offset, $limit] = $this->buildparams(); + + //权限组信息 + $getGroups = $this->auth->getGroups(); + if($getGroups[0]['pid'] != 0){ //不是超级管理员 + $userInfo = $this->auth->getUserinfo(); + $admin_id = $userInfo['id']; + $www['admin_id'] = $admin_id; + $user_address = Db::name('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']; + }elseif ($user_address['auth_range'] == 4){ + + }else{ + $where['village'] = $user_address['village_id']; + } + }else{ + $where['village'] = ''; + } + } + + $total = $this->model + ->with(['usermsg','area','street','village']) + ->where($where) + ->order($sort, $order) + ->count(); + + $list = $this->model + ->with(['usermsg','area','street','village']) + ->where($where) + ->order($sort, $order) + ->limit($offset, $limit) + ->select(); + $list = $list->toArray(); + if ($list){ + foreach ($list as $k=>$v){ + $list[$k]['branch_id'] = Db::name('szxc_party_branch')->where('id',$v['branch_id'])->value('name'); + } + } + $result = ['total' => $total, 'rows' => $list]; + + return json($result); + } + + return $this->view->fetch(); + } + + +} diff --git a/app/admin/controller/nk/party/BranchPayUser.php b/app/admin/controller/nk/party/BranchPayUser.php new file mode 100644 index 0000000..4b62174 --- /dev/null +++ b/app/admin/controller/nk/party/BranchPayUser.php @@ -0,0 +1,103 @@ +model = new \app\admin\model\party\BranchPayUser; + + } + + /** + * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 + * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 + * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 + */ + + /** + * 查看 + */ + public function index() + { + + //设置过滤方法 + $this->request->filter(['strip_tags']); + if ($this->request->isAjax()) { +// dump();die; + //如果发送的来源是Selectpage,则转发到Selectpage + if ($this->request->request('keyField')) { + return $this->selectpage(); + } + [$where, $sort, $order, $offset, $limit] = $this->buildparams(); + + //权限组信息 + $getGroups = $this->auth->getGroups(); + if($getGroups[0]['pid'] != 0){ //不是超级管理员 + $userInfo = $this->auth->getUserinfo(); + $admin_id = $userInfo['id']; + $www['admin_id'] = $admin_id; + $user_address = Db::name('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']; + }elseif ($user_address['auth_range'] == 4){ + + }else{ + $where['village'] = $user_address['village_id']; + } + }else{ + $where['village'] = ''; + } + } + + $total = $this->model + ->with(['usermsg','area','street','village']) + ->where($where) + ->order($sort, $order) + ->count(); + + $list = $this->model + ->with(['usermsg','area','street','village']) + ->where($where) + ->order($sort, $order) + ->limit($offset, $limit) + ->select(); + $list = $list->toArray(); + if ($list){ + foreach ($list as $k=>$v){ + $list[$k]['branch_id'] = Db::name('szxc_party_branch')->where('id',$v['branch_id'])->value('name'); + } + } + $result = ['total' => $total, 'rows' => $list]; + + return json($result); + } + + return $this->view->fetch(); + } + + + +} diff --git a/app/admin/controller/nk/party/Info.php b/app/admin/controller/nk/party/Info.php new file mode 100644 index 0000000..da91572 --- /dev/null +++ b/app/admin/controller/nk/party/Info.php @@ -0,0 +1,211 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.party.info/index', + '/admin/nk.party.info/add', + '/admin/nk.party.info/edit', + '/admin/nk.party.info/del', + '/admin/nk.party.info/read', + ]; +// 获取用户信息 + $this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->field('user_id,name')->select(); + $this->party_branch = Db::table('fa_szxc_party_branch')->where('status',1)->field('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_szxc_party_info') + ->where($where) + ->count(); + $list = Db::table('fa_szxc_party_info') + ->withAttr('name',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->withAttr('nation',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('nation'); + }) + ->withAttr('political_outlook',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('political_outlook'); + }) + ->withAttr('phone',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('phone'); + }) + ->withAttr('marital_status',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('marital_status'); + }) + ->withAttr('idcard',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('idcard'); + }) + ->withAttr('sex',function ($value,$data){ + $sex = Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('gender'); + if($sex == 1){ + return '男'; + }elseif ($sex == 2){ + return '女'; + }else{ + return ''; + } + }) + ->withAttr('age',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('age'); + }) + ->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('party_branch',function ($value,$data){ + return Db::table('fa_szxc_party_branch')->where('id',$data['party_branch'])->value('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/party/info/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_szxc_party_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('users', $this->users); + View::assign('party_branch', $this->party_branch); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_szxc_party_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_szxc_party_info')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + View::assign('party_branch', $this->party_branch); + 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_szxc_party_info')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + View::assign('party_branch', $this->party_branch); + 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_szxc_party_info')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/party/Vote.php b/app/admin/controller/nk/party/Vote.php new file mode 100644 index 0000000..c1300c2 --- /dev/null +++ b/app/admin/controller/nk/party/Vote.php @@ -0,0 +1,175 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.party.vote/index', + '/admin/nk.party.vote/add', + '/admin/nk.party.vote/edit', + '/admin/nk.party.vote/del', + '/admin/nk.party.vote/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_szxc_party_vote') + ->where($where) + ->count(); + $list = Db::table('fa_szxc_party_vote') + ->withAttr('name',function ($value,$data){ + return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); + }) + ->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('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/party/vote/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_szxc_party_vote')->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('users', $this->users); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_szxc_party_vote')->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_szxc_party_vote')->where('id',$id)->find(); + View::assign('editor', get_system_config('other','editor')); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + 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_szxc_party_vote')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + 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_szxc_party_vote')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/controller/nk/party/VoteComment.php b/app/admin/controller/nk/party/VoteComment.php new file mode 100644 index 0000000..2017371 --- /dev/null +++ b/app/admin/controller/nk/party/VoteComment.php @@ -0,0 +1,173 @@ +adminInfo = get_login_admin(); + $this->url=[ + '/admin/nk.party.votecomment/index', + '/admin/nk.party.votecomment/add', + '/admin/nk.party.votecomment/edit', + '/admin/nk.party.votecomment/del', + '/admin/nk.party.votecomment/read', + ]; +// 获取用户信息 + $this->users = Db::table('fa_szxc_information_usermsg')->where('status',1)->field('user_id,name')->select(); + $this->party_vote = Db::table('fa_szxc_party_vote')->where('status',1)->field('id,title')->select(); + } + /** + * 数据列表 + */ + public function index() + { + if (request()->isAjax()) { + $params= get_params(); + $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_szxc_party_vote_comment') + ->where($where) + ->count(); + $list = Db::table('fa_szxc_party_vote_comment') + ->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_szxc_party_vote')->where('id',$data['vote_id'])->value('title'); + }) + ->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/party/votecomment/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['add_time']= date('Y-m-d H:i:s'); + $param['county']=$adds['area_id']; + $param['township']=$adds['street_id']; + $param['village']=$adds['village_id']; + $res=Db::table('fa_szxc_party_vote_comment')->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('users', $this->users); + View::assign('party_vote', $this->party_vote); + return view(); + } + } + + + public function edit(){ + $param= get_params(); + if (request()->isAjax()) { + $res=Db::table('fa_szxc_party_vote_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_szxc_party_vote_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); + View::assign('party_vote', $this->party_vote); + 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_szxc_party_vote_comment')->where('id',$id)->find(); + if (!empty($detail)) { + View::assign('detail', $detail); + View::assign('users', $this->users); + View::assign('party_vote', $this->party_vote); + 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_szxc_party_vote_comment')->where('id',$id)->update(['status'=>$type]); + if ($res){ + return to_assign(); + }else{ + return to_assign(1, '操作失败,原因:'.$res); + } + } + + +} diff --git a/app/admin/view/admin/add.html b/app/admin/view/admin/add.html index fd28b0f..42e4356 100644 --- a/app/admin/view/admin/add.html +++ b/app/admin/view/admin/add.html @@ -181,6 +181,63 @@ + + +
文章标题 | +{$detail.title} | +||||
创建时间 | +{$detail.view_time} | +状态 | ++ {eq name="$detail.status" value="1"}正常{/eq} + {eq name="$detail.status" value="0"}下架{/eq} + | +||
文章摘要 | +{$detail.describe} | +||||
文章内容 | ++ {$detail.content|raw} + | +
党支部名称* | ++ | ||||||
党支部书记* | +
+
+
+
+ |
+ ||||||
书记电话号码* | ++ + | +||||||
党支部副书记* | +
+
+
+
+ |
+ ||||||
副书记电话号码* | ++ + | +||||||
单位* | ++ + | +
用户* | +
+
+
+
+ |
+ ||||||
党支部* | +
+
+
+
+ |
+ ||||||
所属单位* | ++ + | +||||||
任职部门* | ++ + | +||||||
担任职务* | ++ + | +||||||
加入组织时间* | ++ + | +||||||
党籍状态* | ++ + | +||||||
介绍人* | ++ + | +||||||
党费* | ++ + | +
标题* | ++ + | +||||||
文章内容* | ++ + | +||||||
发表时间* | ++ + | +||||||
结束时间* | ++ + | +
文章id* | +
+
+
+
+ |
+ |||||
用户* | +
+
+
+
+ |
+ |||||
评论* | ++ + | +|||||
后台回复* | ++ + | +|||||
状态* | ++ + + | +