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