作者 lyh

gx

... ... @@ -32,10 +32,12 @@ class ProjectController extends BaseController
$map = [];
//搜索类型
if(!empty($this->param['type'])){
if($this->param['type'] >= 3){
$this->param['type'] = 3;
if($this->param['type'] >= 3){//推广中
$map[] = ['type', '>=' ,3];
}else{
$map[] = ['type', $this->param['type']];
}
$map[] = ['type', $this->param['type']];
}
//搜索技术组
... ...