Commit 43caf7a6 43caf7a67befb86c2558ce058f9d961c3bec0758 by 谭纯

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

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