|
@@ -171,7 +171,9 @@ class UserFolderController extends Controller
|
|
if(!$id || !$go){
|
|
if(!$id || !$go){
|
|
return $this->error("缺少参数!");
|
|
return $this->error("缺少参数!");
|
|
}
|
|
}
|
|
- $list = UserFolderImage::query()->where('folder_id','=',$id)->where('user_id',$this->userId)->paginate($limit);
|
|
|
|
|
|
+ $list = UserFolderImage::query()->where('folder_id','=',$id)
|
|
|
|
+// ->where('user_id',$this->userId)
|
|
|
|
+ ->paginate($limit);
|
|
return $this->success(pages($list,$go));
|
|
return $this->success(pages($list,$go));
|
|
}
|
|
}
|
|
|
|
|