[Modify]热门房间tab调整

This commit is contained in:
wushaocheng
2023-07-28 10:23:22 +08:00
parent 7a7a394b03
commit 10b48eeb0e
11 changed files with 322 additions and 13 deletions

View File

@@ -508,7 +508,7 @@ public class UriProvider {
* 用户特权卡使用说明
*/
public static String getPrivilegeInstructions() {
return WEB_URL.concat("/yinmeng/modules/privilegeCardRule/index.html");
return WEB_URL.concat("/yinmeng/modules/rule/privilegeCardRule.html");
}
}

View File

@@ -204,6 +204,11 @@ object HomeModel : BaseModel() {
api.getPartyRecommendRoomList(uid, types)
}
suspend fun getPartyRecommendRoomMoreList(): List<HomeRoomInfo>? =
launchRequest {
api.getPartyRecommendRoomMoreList()
}
suspend fun getServiceGiftRecord(): List<GiftServiceMsgVo>? =
launchRequest {
api.getServiceGiftRecord()
@@ -449,6 +454,14 @@ object HomeModel : BaseModel() {
@Query("types") types: String
): ServiceResult<List<HomeRoomInfo>>
/**
* 首页推荐更多房间
*
* @return
*/
@GET("/home/hotRoom")
suspend fun getPartyRecommendRoomMoreList(): ServiceResult<List<HomeRoomInfo>>
/**
* 全服礼物记录
*