|
...
|
...
|
@@ -318,7 +318,8 @@ class LoginController extends BaseController |
|
|
|
$result = [];
|
|
|
|
$data = DB::select("SELECT project_id, COUNT(*) as project_count FROM gl_file GROUP BY project_id;");
|
|
|
|
foreach ($data as $v){
|
|
|
|
array_push($result,$v['project_id']);
|
|
|
|
|
|
|
|
array_push($result,$v->project_id);
|
|
|
|
}
|
|
|
|
$this->response('success',Code::SUCCESS,$result);
|
|
|
|
}
|
...
|
...
|
|