修复抽盘无法上拍卖位

This commit is contained in:
启星
2025-10-12 15:56:48 +08:00
parent 0b855ca803
commit 9368211a3c
5 changed files with 41 additions and 5 deletions

View File

@@ -1676,6 +1676,7 @@ QXRoomUserInfoViewDelegate
weakSelf.skyView.roomId = weakSelf.roomId;
weakSelf.skyView.userIds = userIds;
weakSelf.skyView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
@@ -1687,6 +1688,7 @@ QXRoomUserInfoViewDelegate
weakSelf.ageView.roomId = weakSelf.roomId;
weakSelf.ageView.userIds = userIds;
weakSelf.ageView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.ageView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
@@ -1698,6 +1700,7 @@ QXRoomUserInfoViewDelegate
weakSelf.timeView.roomId = weakSelf.roomId;
weakSelf.timeView.userIds = userIds;
weakSelf.timeView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.timeView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;

View File

@@ -400,7 +400,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf

View File

@@ -432,7 +432,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf

View File

@@ -433,7 +433,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf