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 @@ + + +
+ +
+
+ + +
+
+
带搜索的选择框
+
layer
+
form
+
layim
+
element
+
laytpl
+
upload
+
laydate
+
laypage
+
flow
+
util
+
code
+
tree
+
layedit
+
nav
+
tab
+
table
+
select
+
checkbox
+
switch
+
radio
+
+
+
+ {/block} diff --git a/app/admin/view/nk/party/article/add.html b/app/admin/view/nk/party/article/add.html new file mode 100644 index 0000000..95dddec --- /dev/null +++ b/app/admin/view/nk/party/article/add.html @@ -0,0 +1,102 @@ +{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/party/article/edit.html b/app/admin/view/nk/party/article/edit.html new file mode 100644 index 0000000..98021e9 --- /dev/null +++ b/app/admin/view/nk/party/article/edit.html @@ -0,0 +1,119 @@ +{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/party/article/index.html b/app/admin/view/nk/party/article/index.html new file mode 100644 index 0000000..68027e2 --- /dev/null +++ b/app/admin/view/nk/party/article/index.html @@ -0,0 +1,145 @@ +{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/party/article/read.html b/app/admin/view/nk/party/article/read.html new file mode 100644 index 0000000..5c8280e --- /dev/null +++ b/app/admin/view/nk/party/article/read.html @@ -0,0 +1,39 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

文章详情

+ + + + + + + + + + + + + + + + + + + + +
文章标题{$detail.title}
创建时间{$detail.view_time}状态 + {eq name="$detail.status" value="1"}正常{/eq} + {eq name="$detail.status" value="0"}下架{/eq} +
文章摘要{$detail.describe}
文章内容 + {$detail.content|raw} +
+
+{/block} + \ No newline at end of file diff --git a/app/admin/view/nk/party/branch/add.html b/app/admin/view/nk/party/branch/add.html new file mode 100644 index 0000000..66463ac --- /dev/null +++ b/app/admin/view/nk/party/branch/add.html @@ -0,0 +1,113 @@ +{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/party/branch/edit.html b/app/admin/view/nk/party/branch/edit.html new file mode 100644 index 0000000..1cf4a27 --- /dev/null +++ b/app/admin/view/nk/party/branch/edit.html @@ -0,0 +1,129 @@ +{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/party/branch/index.html b/app/admin/view/nk/party/branch/index.html new file mode 100644 index 0000000..d86d385 --- /dev/null +++ b/app/admin/view/nk/party/branch/index.html @@ -0,0 +1,164 @@ +{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/party/branch/read.html b/app/admin/view/nk/party/branch/read.html new file mode 100644 index 0000000..7f9e08b --- /dev/null +++ b/app/admin/view/nk/party/branch/read.html @@ -0,0 +1,76 @@ +{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/party/branch_pay_list/add.html b/app/admin/view/nk/party/branch_pay_list/add.html new file mode 100644 index 0000000..a43c1ac --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_list/add.html @@ -0,0 +1,53 @@ +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + + + + + + + + + + + + +
diff --git a/app/admin/view/nk/party/branch_pay_list/edit.html b/app/admin/view/nk/party/branch_pay_list/edit.html new file mode 100644 index 0000000..0d66718 --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_list/edit.html @@ -0,0 +1,52 @@ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + + + + + + + + + + + + +
diff --git a/app/admin/view/nk/party/branch_pay_list/index.html b/app/admin/view/nk/party/branch_pay_list/index.html new file mode 100644 index 0000000..f72e3d4 --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_list/index.html @@ -0,0 +1,35 @@ +
+ {:build_heading()} + +
+ +
+
diff --git a/app/admin/view/nk/party/branch_pay_user/add.html b/app/admin/view/nk/party/branch_pay_user/add.html new file mode 100644 index 0000000..5ec9de4 --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_user/add.html @@ -0,0 +1,66 @@ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
diff --git a/app/admin/view/nk/party/branch_pay_user/edit.html b/app/admin/view/nk/party/branch_pay_user/edit.html new file mode 100644 index 0000000..35504ce --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_user/edit.html @@ -0,0 +1,71 @@ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
diff --git a/app/admin/view/nk/party/branch_pay_user/index.html b/app/admin/view/nk/party/branch_pay_user/index.html new file mode 100644 index 0000000..0a53e6f --- /dev/null +++ b/app/admin/view/nk/party/branch_pay_user/index.html @@ -0,0 +1,35 @@ +
+ {:build_heading()} + +
+ +
+
diff --git a/app/admin/view/nk/party/info/add.html b/app/admin/view/nk/party/info/add.html new file mode 100644 index 0000000..fffb32d --- /dev/null +++ b/app/admin/view/nk/party/info/add.html @@ -0,0 +1,150 @@ +{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/party/info/edit.html b/app/admin/view/nk/party/info/edit.html new file mode 100644 index 0000000..bdb7d8c --- /dev/null +++ b/app/admin/view/nk/party/info/edit.html @@ -0,0 +1,164 @@ +{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/party/info/index.html b/app/admin/view/nk/party/info/index.html new file mode 100644 index 0000000..a0104a9 --- /dev/null +++ b/app/admin/view/nk/party/info/index.html @@ -0,0 +1,209 @@ +{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/party/info/read.html b/app/admin/view/nk/party/info/read.html new file mode 100644 index 0000000..50402f7 --- /dev/null +++ b/app/admin/view/nk/party/info/read.html @@ -0,0 +1,106 @@ +{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/party/vote/add.html b/app/admin/view/nk/party/vote/add.html new file mode 100644 index 0000000..800317e --- /dev/null +++ b/app/admin/view/nk/party/vote/add.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/party/vote/edit.html b/app/admin/view/nk/party/vote/edit.html new file mode 100644 index 0000000..3d8ea7b --- /dev/null +++ b/app/admin/view/nk/party/vote/edit.html @@ -0,0 +1,116 @@ +{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/party/vote/index.html b/app/admin/view/nk/party/vote/index.html new file mode 100644 index 0000000..a594176 --- /dev/null +++ b/app/admin/view/nk/party/vote/index.html @@ -0,0 +1,179 @@ +{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/party/vote/read.html b/app/admin/view/nk/party/vote/read.html new file mode 100644 index 0000000..f70acde --- /dev/null +++ b/app/admin/view/nk/party/vote/read.html @@ -0,0 +1,67 @@ +{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/party/votecomment/add.html b/app/admin/view/nk/party/votecomment/add.html new file mode 100644 index 0000000..bada4cf --- /dev/null +++ b/app/admin/view/nk/party/votecomment/add.html @@ -0,0 +1,114 @@ +{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/party/votecomment/edit.html b/app/admin/view/nk/party/votecomment/edit.html new file mode 100644 index 0000000..7af6369 --- /dev/null +++ b/app/admin/view/nk/party/votecomment/edit.html @@ -0,0 +1,126 @@ +{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/party/votecomment/index.html b/app/admin/view/nk/party/votecomment/index.html new file mode 100644 index 0000000..f945ac2 --- /dev/null +++ b/app/admin/view/nk/party/votecomment/index.html @@ -0,0 +1,154 @@ +{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/party/votecomment/read.html b/app/admin/view/nk/party/votecomment/read.html new file mode 100644 index 0000000..c1277d5 --- /dev/null +++ b/app/admin/view/nk/party/votecomment/read.html @@ -0,0 +1,81 @@ +{extend name="common/base"/} +{block name="style"} + +{/block} + +{block name="body"} +
+

详情

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
文章id* +
+ +
+
用户* +
+ +
+
评论* + +
后台回复* + +
状态* + + +
+
+{/block} + + +{block name="script"} + +{/block} + \ No newline at end of file