Commit 42a2ef79 authored by hujun's avatar hujun

客户列表筛选

parent 19a85f18
...@@ -130,8 +130,8 @@ class Member extends Basic{ ...@@ -130,8 +130,8 @@ class Member extends Basic{
} }
//客户状态(0:求租;1:已租;-1:无效) //客户状态(0:求租;1:已租;-1:无效)
if (!empty($params['rent_user']) && $params['rent_user'] != 2) { if (isset($params['rent_user']) && $params['rent_user'] != 2) {
$where['a.user_status'] = $params['user_rent']; $where['a.user_status'] = $params['rent_user'];
} }
//注册时间 //注册时间
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment