|
@@ -29,6 +29,7 @@ class ProjectController extends Controller
|
|
|
*
|
|
|
* @queryParam area_code string 区域代码. Example: 330100
|
|
|
* @queryParam project_cate_id integer 项目分类ID. Example: 1
|
|
|
+ * @queryParam type string 项目类型(normal:普通项目,add_time:加钟项目). Example: normal
|
|
|
*
|
|
|
* @response {
|
|
|
* "code": 200,
|
|
@@ -57,8 +58,9 @@ class ProjectController extends Controller
|
|
|
{
|
|
|
$areaCode = $request->input('area_code');
|
|
|
$projectCateId = $request->input('project_cate_id');
|
|
|
+ $type = $request->input('type');
|
|
|
|
|
|
- return $this->service->getProjectList($areaCode, $projectCateId);
|
|
|
+ return $this->service->getProjectList($areaCode, $projectCateId, $type);
|
|
|
}
|
|
|
|
|
|
/**
|