zhangchangchun 5 years ago
parent
commit
0a43015978
1 changed files with 1 additions and 5 deletions
  1. 1 5
      app/Repositories/V2/VideoGroupRepository.php

+ 1 - 5
app/Repositories/V2/VideoGroupRepository.php

@@ -166,11 +166,7 @@ class VideoGroupRepository {
     }
     //列表
     public function VideoInfoIndex($request){
-        $where = [];
-        if(isset($request['id'])){
-            $where[] = ['video_group_id'=>$request['id']];
-        }
         $perPage = isset($request['per_page']) ? $request['per_page'] : 20;
-        return $this->videoGroupInfo->where($where)->paginate($perPage);
+        return $this->videoGroupInfo->paginate($perPage);
     }
 }