|
...
|
...
|
@@ -53,6 +53,9 @@ class GeoQuestionResLogic extends BaseLogic |
|
|
|
$map['created_at'] = ['between',[$map['created_at'].' 00:00:00',$map['created_at'].' 23:59:59']];
|
|
|
|
$this->model = new GeoQuestionLog();
|
|
|
|
}
|
|
|
|
if(isset($map['label']) && !empty($map['label'])){
|
|
|
|
$map['label'] = ['like','%'.$map['label'].'%'];
|
|
|
|
}
|
|
|
|
if(!empty($map['keywords'])){
|
|
|
|
$map['keywords'] = ['like','%'.$map['keywords'].'%'];
|
|
|
|
}
|
...
|
...
|
|