tp 多条件查询 及 多表left join查询

tp 多条件查询 及 多表left join查询_第1张图片

控制层

//产品管理列表,同时根据查询条件显示列表
		public function productlist(){
			import('ORG.Util.Page');

            $user_name = trim($_GET['user_name']);
            $phone = trim($_GET['phone']);
            $card_examine = trim($_GET['card_examine']);
            $idcard_examine = trim($_GET['idcard_examine']);
            $starttime = trim($_GET['starttime']);
            $endtime = trim($_GET['endtime']);
            $city = trim($_GET['city']);
            $orga_name = trim($_GET['orga_name']);

			$product   =   M('product');
		
			$count = $product->count();// 查询满足要求的总记录数 
            $Page  = new Page($count,15);// 实例化分页类 传入总记录数
            $show  = $Page->show();// 分页显示输出

            $sql="SELECT `app_product`.id, `app_product`.product_name, `app_product`.product_orga,`app_product`.city,
                `app_product`.create_time,`app_user`.user_name
                  FROM `app_product` LEFT JOIN `app_user`  on `app_product`.userid = `app_user`.id ";
            // var_dump($sql);
            // die();
            $sql=$sql." where 1=1";
            if($user_name){
                $sql = $sql." and user_name like "." '%$user_name%'";
            }
            if($phone){
                $sql = $sql." and phone="."'$phone'";
            }
            if($card_examine == '0' or $card_examine){
                $sql = $sql." and card_examine=".$card_examine;
            }
            if($idcard_examine == '0' or $idcard_examine){
                $sql = $sql." and idcard_examine=".$idcard_examine;
            }
            if($starttime){
                $sql = $sql." and create_time >"." '$starttime' ";
            }
            if($endtime){
                $sql = $sql." and create_time <"." '$endtime' ";
            }
            if($city){
                $sql = $sql." and app_product.city="." '$city' ";
            }
            if($orga_name){
                $sql = $sql." and orga_name like"." '%$orga_name%' ";
            }

            $sql=$sql." ORDER BY app_product.id desc LIMIT $Page->firstRow,$Page->listRows";
            $list = $product ->query($sql);

            // 进行分页数据查询
            //$list = $user->order('id')->limit($Page->firstRow.','.$Page->listRows)->select();
             
            //var_dump($Page->getNowPage());  //得到当前页

            $this->assign('NowPage',$Page->getNowPage());// 赋值数据集
            $this->assign('list',$list);// 赋值数据集
            $this->assign('page',$show);// 赋值分页输出

			$this->display();
		}


显示层

    
     
       hello {$name}
	   
     
     
		

用户姓名 用户手机 名片认证 实名认证
日期—— 城市 机构名称



产品资源管理
ID 产品名 发布时间 浏览次数 产品服务城市 机构 用户名 操作
{$k+($NowPage-1)*15} {$vo.product_name} {$vo.create_time} {$vo.city} {$vo.product_orga} {$vo.user_name} 详情 删除

{$page}
全选:


你可能感兴趣的:(tp框架)