Commit 676261e5 authored by hujun's avatar hujun

客户跟进列表搜索

parent e74ad8d0
......@@ -85,16 +85,16 @@ class Remark extends Basic
$where['b.district_id'] = $this->params['remark_district_id'];
}
if (!empty($params['province'])) {
$where['c.province'] = $params['province'];
if (!empty($this->params['province'])) {
$where['c.province'] = $this->params['province'];
}
if (!empty($params['city'])) {
$where['c.city'] = $params['city'];
if (!empty($this->params['city'])) {
$where['c.city'] = $this->params['city'];
}
if (!empty($params['disc'])) {
$where['c.disc'] = $params['disc'];
if (!empty($this->params['disc'])) {
$where['c.disc'] = $this->params['disc'];
}
$field = 'c.id,a.create_time,a.content,b.name as admin,d.name as label_name,c.user_name,c.user_phone,a.user_status';
......
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