Commit 824facf8 authored by zw's avatar zw

搜索控制

parent f6f9d6c6
...@@ -109,7 +109,6 @@ class FollowUpLogModel extends Model ...@@ -109,7 +109,6 @@ class FollowUpLogModel extends Model
->join("a_store c","b.store_id = c.id","left") ->join("a_store c","b.store_id = c.id","left")
->join("o_report d","a.report_id = d.id","left") ->join("o_report d","a.report_id = d.id","left")
->where($where_) ->where($where_)
->limit(100) //20181229控制最多100条数据
->select(); ->select();
} }
......
...@@ -137,6 +137,7 @@ class UPhoneFollowPp extends BaseModel ...@@ -137,6 +137,7 @@ class UPhoneFollowPp extends BaseModel
->join("a_agents b", "a.agent_id = b.id", "left") ->join("a_agents b", "a.agent_id = b.id", "left")
->join("a_store c", "b.store_id = c.id", "left") ->join("a_store c", "b.store_id = c.id", "left")
->where($where_) ->where($where_)
->limit(100)
->select(); ->select();
return $result; return $result;
......
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