Commit 86589da3 authored by zhuwei's avatar zhuwei

1

parent 78989bfe
...@@ -973,10 +973,10 @@ class Broker extends Basic ...@@ -973,10 +973,10 @@ class Broker extends Basic
$m_agents_black_list = new AAgentsBlackList(); $m_agents_black_list = new AAgentsBlackList();
if (isset($params["name"])) { if (isset($params["name"])) {
$get_params['Agents.name'] = $params["name"]; $get_params['Agents.name'] = ['LIKE', '%'.$params["name"].'%'];
} }
if (isset($params["phone"])) { if (isset($params["phone"])) {
$get_params['Agents.phone'] = $params["phone"]; $get_params['Agents.phone'] = ['LIKE', '%'.$params["phone"].'%'];
} }
$get_params['BlackList.status'] = 0; $get_params['BlackList.status'] = 0;
......
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