12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- global $_GPC, $_W;
- $action = 'start';
- $GLOBALS['frames'] = $this->getNaveMenu($_COOKIE['cityname'], $action);
- $where="WHERE a.uniacid=:uniacid and a.user_id !='' and a.cityname=:cityname ";
- $type=isset($_GPC['type'])?$_GPC['type']:'wait';
- if(isset($_GPC['keywords'])){
- $op=$_GPC['keywords'];
- $where.=" and a.content LIKE concat('%', :name,'%') ";
- $data[':name']=$op;
- $type='all';
- }
- $state=isset($_GPC['state'])?$_GPC['state']:'1';
- $pageindex = max(1, intval($_GPC['page']));
- $pagesize=10;
- $data[':uniacid']=$_W['uniacid'];
- $data[':cityname']=$_COOKIE["cityname"];
- if($type=='all'){
- $sql="select a.*,b.type_name,c.name as wname from " . tablename("zhtc_zx") . " a" . " left join " . tablename("zhtc_zx_type") . " b on a.type_id=b.id" . " left join " . tablename("zhtc_user") . " c on a.user_id=c.id ".$where." order by a.time desc ";
-
- $total=pdo_fetchcolumn("select count(*) as wname from " . tablename("zhtc_zx") . " a" . " left join " . tablename("zhtc_zx_type") . " b on a.type_id=b.id" . " left join " . tablename("zhtc_user") . " c on a.user_id=c.id ".$where." order by a.time desc ",$data);
- }else{
- $where.= " and a.state=$state";
- $sql="select a.*,b.type_name,c.name as wname from " . tablename("zhtc_zx") . " a" . " left join " . tablename("zhtc_zx_type") . " b on a.type_id=b.id" . " left join " . tablename("zhtc_user") . " c on a.user_id=c.id ".$where." order by a.time desc ";
-
- $total=pdo_fetchcolumn("select count(*) as wname from " . tablename("zhtc_zx") . " a" . " left join " . tablename("zhtc_zx_type") . " b on a.type_id=b.id" . " left join " . tablename("zhtc_user") . " c on a.user_id=c.id ".$where." order by a.time desc",$data);
- }
- $select_sql =$sql." LIMIT " .($pageindex - 1) * $pagesize.",".$pagesize;
- $list=pdo_fetchall($select_sql,$data);
- $pager = pagination($total, $pageindex, $pagesize);
- if($_GPC['op']=='delete'){
- $res=pdo_delete('zhtc_zx',array('id'=>$_GPC['id']));
- if($res){
- message('删除成功!', $this->createWebUrl2('dlinzxcheckmanager'), 'success');
- }else{
- message('删除失败!','','error');
- }
- }
- if($_GPC['op']=='tg'){
- $res=pdo_update('zhtc_zx',array('state'=>2,'sh_time'=>date('Y-m-d H:i:s')),array('id'=>$_GPC['id']));
- if($res){
- message('通过成功!', $this->createWebUrl2('dlinzxcheckmanager'), 'success');
- }else{
- message('通过失败!','','error');
- }
- }
- if($_GPC['op']=='jj'){
- $res=pdo_update('zhtc_zx',array('state'=>3,'sh_time'=>date('Y-m-d H:i:s')),array('id'=>$_GPC['id']));
- if($res){
- message('拒绝成功!', $this->createWebUrl2('dlinzxcheckmanager'), 'success');
- }else{
- message('拒绝失败!','','error');
- }
- }
- include $this->template('web/dlinzxcheckmanager');
|