|
|
@@ -39,6 +39,12 @@ class MasterWorkerServiceOrderLists extends BaseAdminDataLists implements ListsS
|
|
|
if (isset($this->params['recruiting_behalf']) && !empty($this->params['recruiting_behalf'])) {
|
|
|
$where[] = ['a.recruiting_behalf','like' ,"%".$this->params['recruiting_behalf']."%"];
|
|
|
}
|
|
|
+ if (isset($this->params['mobile']) && !empty($this->params['mobile'])) {
|
|
|
+ $where[] = ['a.mobile','=' ,$this->params['mobile']];
|
|
|
+ }
|
|
|
+ if (isset($this->params['cooperation']) && !empty($this->params['cooperation'])) {
|
|
|
+ $where[] = ['a.cooperation','=' ,$this->params['cooperation']];
|
|
|
+ }
|
|
|
if (!empty($this->params['start_time'])) {
|
|
|
//$where[] = ['b.update_time', '>=', strtotime($this->params['start_time'])];
|
|
|
$this->sqlJoin .= ' AND b.update_time >= '.strtotime($this->params['start_time']);
|