fix:修复首页Tab页列表分页传参导致bug

This commit is contained in:
Max
2024-02-23 14:38:47 +08:00
parent 3747c10dc1
commit 7093cfa7f3

View File

@@ -298,7 +298,7 @@ object HomeModel : BaseModel() {
@GET("/home/tab/homeV2")
suspend fun apiHomeTabHome(
@Query("tabId") tabId: Int,
@Query("page") page: Int,
@Query("pageNum") page: Int,
@Query("pageSize") pageSize: Int
): ServiceResult<List<HomeRoomInfo>>