Commit 43caf7a6 43caf7a67befb86c2558ce058f9d961c3bec0758 by 谭纯

修改歌曲文件分贝接口待办查询status=0的

1 parent ead1e8ce
......@@ -79,7 +79,8 @@ class PropertyTrackService extends Service
*/
public function pending()
{
$count = PropertyTrack::query()->where(['create_admin'=>$this->request->get('identifier')->company_id])->whereNull('upload_time')->count();
//$count = PropertyTrack::query()->where(['create_admin'=>$this->request->get('identifier')->company_id])->whereNull('upload_time')->count();
$count = PropertyTrack::query()->where(['create_admin'=>$this->request->get('identifier')->company_id])->where('status', 0)->count();
return Response::success(['count'=>$count]);
}
......